Comments Kris started the conversationSeptember 7, 2021 at 6:35amIs it possible to hide cart ajax on mobile or on computer ? 1,226Dustin repliedSeptember 11, 2021 at 4:40pmHi 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 Sign in to reply ...
Is it possible to hide cart ajax on mobile or on computer ?
Hi Kris,
Yes, you can do that. Please add the below custom code (How to add custom code?)
It will disable the Fly Cart for mobile devices.
Best regards,
Dustin