Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 104029

ameraz on "[Plugin: WooCommerce - excelling eCommerce] Dont Show the Sidebar on Product Category Page"

$
0
0

You need to remove the following lines of code from the archive-product.php

<?php
	/**
	 * woocommerce_sidebar hook
	 *
	 * @hooked woocommerce_get_sidebar - 10
	 */
	do_action('woocommerce_sidebar');
?>

or, hook the sidebar out by adding the following lines of code to your functions.php (best way to do it actually)

remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);


Viewing all articles
Browse latest Browse all 104029

Trending Articles