Site logo

[Support request] How to create a Element just for mobile and not for the web

Home Forums Support [Support request] How to create a Element just for mobile and not for the web

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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2478214
    Sergio

    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.

    #2478303
    Ying
    Staff
    Customer Support

    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 );
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.