So if I'm reading this correctly you want to show something on mobile but hide it on desktop? If so this can be achieved using media queries.
@media screen and (min-width: 768px) {
.hide-on-mobile {
display: none;
}
}
<div class="hide-on-mobile">
<p>Code to hide</p>
</div>