Skip to content

Instantly share code, notes, and snippets.

@patilvikasj
Created November 18, 2019 14:51
Show Gist options
  • Select an option

  • Save patilvikasj/4801391a361c5b0644f558856db674c1 to your computer and use it in GitHub Desktop.

Select an option

Save patilvikasj/4801391a361c5b0644f558856db674c1 to your computer and use it in GitHub Desktop.
Disable off canvas filter on WooCommerce shop page
<?php // Do not add this line in your theme's functions.php
add_filter( 'astra_get_option_shop-off-canvas-trigger-type', function( $value ) {
if( function_exists( 'is_shop' ) && is_shop() ) {
return 'disable';
}
return $value;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment