Created
January 30, 2012 15:37
-
-
Save jameskoster/1705012 to your computer and use it in GitHub Desktop.
WooCommece - Exclude a category from shop page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This code should be added to functions.php of your theme | |
**/ | |
add_filter( 'parse_query', 'custom_parse_query' ); | |
function custom_parse_query( $q ) { | |
if ( !$q->is_post_type_archive() ) return; | |
$q->set( 'tax_query', array(array( | |
'taxonomy' => 'product_cat', | |
'field' => 'slug', | |
'terms' => array( 'tshirts' ), | |
'operator' => 'NOT IN' | |
))); | |
remove_filter( 'parse_query', 'custom_parse_query' ); | |
} | |
?> |
Hi,
I'm sorry if I write directly to you but woocommerce forum is down as you
know! :-(
We like very much woocommerce and we used it in many website in only few
months, but now we're trying to integrate it in old theme templates.
We don't succeed to integrate it in no-one theme.
For example we've tried to integrate it in BURO theme (not child version
with woocommerce) but the commerce's pages structure are completely
dismantled.
Is woocommerce compatible with all wordpress themes or not?
Is there a guide line to follow in order to integrate it?
thanks
##
_---------------------------_
_Ing. Marco Divita_
*
*
2012/3/13 jameskoster <
[email protected]
Fraid not. Should work. Did you get the slug right? Post on our forum if
you're stuck; http://www.woothemes.com/support-forum/?viewforum=150
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/1705012
##
_---------------------------_
_Ing. Marco Divita_
*
*
*
*
This does work, but when I use the Product Category Shortocde [product_category category="test-category-name" per_page="9" columns="3" orderby="date" order="desc"]
The Products from the specified category do NOT list, instead products from another category display, without pagination ..
Any ideas?
thank you
could anyone pretty please see about getting this to work again, since last update this code no longer works. .i still see all categories on the home/shop page
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
fffffast! it works! but i've to put the '!is_admin' query around the whole function: if (!is_admin()){....}
Thanks for your help jameskoster!