• Resolved wasanajones

    (@wasanajones)


    Hi – thanks for this great plugin.

    Do you have a trick to disable loading on Mobile Devices?

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ajay

    (@ajay)

    I think you’d need a filter function for this to filter get_crp to <a href="https://codex.wordpress.org/Function_Reference/wp_is_mobile">wp_is_mobile</a>

    This might work if you add to your theme’s functions.php

    
    <?php
    if ( wp_is_mobile() ) {
    	add_filter( 'get_crp_posts_id', '__return_false' );
    }
    ?>
    Thread Starter wasanajones

    (@wasanajones)

    thanks for prompt and thorough reply – I’ll see what happens.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Disable on Mobile?’ is closed to new replies.