Advertisement
wpgenie

add_auctions_to_vendor_page

Apr 23rd, 2017
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_filter( 'remove_auctions_from_woocommerce_product_query', 'add_auctions_to_vendor_page', 1,2 );
  2. function add_auctions_to_vendor_page($result, $q){
  3.  
  4.     if(isset($q->query_vars['vendor_shop']) && !empty($q->query_vars['vendor_shop'])) {
  5.         return true;   
  6.     }
  7.    
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement