Advertisement
thesufi

Remove sidebar from woocommerce

Nov 6th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function remove_woo_sidebar() {
  2.     if ( is_woocommerce() ) {
  3.         remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
  4.     }
  5. }
  6. add_action( 'get_header', 'remove_woo_sidebar' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement