Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #2866407
How hide cart ajax on mobile?
Closed

Comments

  • Kris started the conversation

    Is it possible to hide cart ajax on mobile or on computer ?

  •  1,226
    Dustin replied

    Hi Kris,

    Yes, you can do that. Please add the below custom code (How to add custom code?)

    add_filter( 'woofc_disable', 'woofc_disable_for_mobile', 99, 1 );
    function woofc_disable_for_mobile( $disable ) {
        if ( wp_is_mobile() ) {
            return true;
        }
        return $disable;
    }

    It will disable the Fly Cart for mobile devices.

    Best regards,
    Dustin