Aurangajeb

Make the product category widget's sub categories hide on load

May 13th, 2022 (edited)
1,192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_action('wp_head', 'fold_product_sub_cat', 11);
  2. function fold_product_sub_cat(){
  3.     ?>
  4.     <script>
  5.         jQuery(document).ready(function($){
  6.             // make the sub categories hide on load
  7.             $( "ul.children.level-0" ).css("display","none");      
  8.         });
  9.     </script>
  10.     <?php
  11. }
Add Comment
Please, Sign In to add comment