Site logo

Archived topic

How to create a Element just for mobile and not for the web

1 reply · Started by Sergio on December 30, 2022

Viewing posts 1–2 of 2

I want to add a space for Adsense in the mobile mode (before the header content). But i don't want that it appears in the computer mode. How can I do it? Thanks in advance.

Hi Sergio,

Try this PHP snippet, replace the 100 with your element id which can be found at the URL of the element editor.

add_filter( 'generate_element_display', function( $display, $element_id ) {
    if ( 100 === $element_id && ! wp_is_mobile() ) {
        $display = false;
    }

    return $display ;
}, 10, 2 );
This archived topic is closed to new replies.