Display Category info
-
I am using this code I picked up on an earlier thread to display the Category information under the Category picture.
Does anybody know how to improve it if there is no Category information it stops pulling a double image like shown here: https://drumastic.com/product-category/drum-sticks/vater/eternal-black/
add_action( 'woocommerce_after_subcategory_title', 'my_add_cat_description', 12); function my_add_cat_description ($category) { $cat_id=$category->term_id; $prod_term=get_term($cat_id,'product_cat'); $description=$prod_term->description; echo '<div class="shop_cat_desc">'.$description.'</div>'; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Display Category info’ is closed to new replies.