This code snippet removes the show filters button from the Shop page on mobile.
Add the following to a child theme’s functions.php file or via the Code Snippets plugin.
add_action( 'wp', 'shoptimizer_remove_mobile_filter', 90 );
function shoptimizer_remove_mobile_filter() {
remove_action( 'woocommerce_before_shop_loop', 'shoptimizer_mobile_filters', 5 );
remove_action( 'shoptimizer_woocommerce_archives_template_before', 'shoptimizer_mobile_filters', 5 );
}
