Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created February 7, 2014 22:13
Show Gist options
  • Select an option

  • Save tomharrigan/8873082 to your computer and use it in GitHub Desktop.

Select an option

Save tomharrigan/8873082 to your computer and use it in GitHub Desktop.
add_action( 'wp', 'remove_single_product_sidebar' );
function remove_single_product_sidebar() {
if( is_product() ) {
remove_action( 'woo_main_after', 'woocommerce_get_sidebar', 10);
}
}
add_filter('loop_shop_columns', 'loop_columns');
function loop_columns() {
return 2; // 2 products per row
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment