Problem with exclude specific category
-
Hello, i want to exclude specific category and products into her from search and ajax search
I add following codefunction exclude_terms_from_ajax_search($args) { $args['tax_query'][] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array('bacon'), // Don't display products in the clothing category on the shop page. 'operator' => 'NOT IN' ); return $args; } add_filter('dgwt_wcas_products_args', 'exclude_terms_from_ajax_search'); add_filter('dgwt_wcas_products_search_page_args', 'exclude_terms_from_ajax_search');
But doesnt make sense?
can you help me?The page I need help with: [log in to see the link]
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Problem with exclude specific category’ is closed to new replies.