Skip to content

Instantly share code, notes, and snippets.

@terriann
terriann / remove-genesis-woocommerce-sidebar.php
Created August 14, 2015 11:56
Remove the Sidebar form your WooCommerce & Genesis WordPress Shop
<?php
/*
* This will remove the Genesis sidebar from your WooCommerce category, taxonomy and product pages
* Just add it to your functions.php in your child theme.
*/
function remove_sidebar_shop() {
if(is_product_category() || is_product_tag() || is_product()) {
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
}