Advertisement
tribulant

Checkout Category Hierarchy Filter

Jun 19th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. function my_hierarchy($show = true, $category = null) {
  4.     if ($category -> id == X) {
  5.         //do not show this category
  6.         $show = false;
  7.     }
  8.  
  9.     return $show;
  10. }
  11.  
  12. add_filter('checkout_category_hierarchy', 'my_hierarchy', 10, 2);
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement