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

Okay
  Public Ticket #4516504
Remove Quick VIew on Mobile
Open

Comments

  • Drew started the conversation

    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.

  •  1,593
    Dustin replied

    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