Попробуйте с этим.
add_action( 'wp', 'disable_woo_commerce_sidebar' );
function disable_woo_commerce_sidebar() {
if ( is_product() || is_shop() ) {
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
}
}
и если вы хотите скрыть боковую панель на всех страницах. попробуйте с приведенным ниже кодом.
function disable_woo_commerce_sidebar() {
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);
}
add_action('init', 'disable_woo_commerce_sidebar');