Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 82367

Disable mobile theme only for one page

$
0
0

Replies: 0

I have a page with id 40 which shouldn’t display the Jetpack’s mobile theme on smartphones, while all other pages should. How do I do this?

I found this filter but maybe I’m using it incorrectly, or it doesn’t work in my functions.php:


// define the jetpack_check_mobile callback
function filter_jetpack_check_mobile( $is_mobile ) {
    if(is_page(40))
    {
        $is_mobile = false;
    }
    return $is_mobile;
};
// add the filter
add_filter( 'jetpack_check_mobile', 'filter_jetpack_check_mobile', 10, 1 );
  • This topic was modified 5 minutes ago by sgrx.

Viewing all articles
Browse latest Browse all 82367

Trending Articles