Comments Drew started the conversationNovember 14, 2025 at 5:54pmI need to remove the Quick View on mobile. Using CSS and on an android phone, it's removed, howvever, IOS iPhone users can see it. I also believe this should be a built in option for the PRO plugin. 1,593Dustin replied3 weeks ago on November 17, 2025 at 4:25amHi Drew, Please add the custom code below to hide the quick view button on mobile devices. (How to add custom code? ↗): add_filter( 'woosq_button_html', function ( $html ) { if ( wp_is_mobile() ) { return ''; } return $html; } );Best regards,Dustin Sign in to reply ...
I need to remove the Quick View on mobile. Using CSS and on an android phone, it's removed, howvever, IOS iPhone users can see it. I also believe this should be a built in option for the PRO plugin.
Hi Drew,
Please add the custom code below to hide the quick view button on mobile devices. (How to add custom code? ↗):
add_filter( 'woosq_button_html', function ( $html ) { if ( wp_is_mobile() ) { return ''; } return $html; } );Best regards,
Dustin