Double category name and count
-
Hi.
I have a small issue with category view. All category names and counts are double on top of category image and on bottom. This top one coming from woo, bottom from template. I wrote allready to author of template but he never give mme any solution.Here is a code from content-product_cat.php:
if ( ! defined( 'ABSPATH' ) ) { exit; } global $woocommerce_loop; // Store loop count we're currently on. if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; } // Store column count for displaying the grid. if ( empty( $woocommerce_loop['columns'] ) ) { $woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 ); } // Increase loop count. $woocommerce_loop['loop']++; ?> <li class="product-category product"> <?php /** * woocommerce_before_subcategory hook. * * @hooked woocommerce_template_loop_category_link_open - 10 */ do_action( 'woocommerce_before_subcategory', $category ); /** * woocommerce_before_subcategory_title hook. * * @hooked woocommerce_subcategory_thumbnail - 10 */ do_action( 'woocommerce_before_subcategory_title', $category ); /** * woocommerce_shop_loop_subcategory_title hook. * * @hooked woocommerce_template_loop_category_title - 10 */ do_action( 'woocommerce_shop_loop_subcategory_title', $category ); ?> <div class="product-thumb"> <a href="<?php echo get_term_link( $category->slug, 'product_cat' ); ?>" class="category-link"> <?php echo woocommerce_subcategory_thumbnail( $category ); ?> </a> </div> <h3 class="h5"> <a href="<?php echo get_term_link( $category->slug, 'product_cat' ); ?>"> <?php echo $category->name; if ( $category->count > 0 ) echo apply_filters( 'woocommerce_subcategory_count_html', ' <mark class="count">' . $category->count . '</mark>', $category ); ?> </a> </h3> <?php /** * woocommerce_after_subcategory_title hook. */ do_action( 'woocommerce_after_subcategory_title', $category ); /** * woocommerce_after_subcategory hook. * * @hooked woocommerce_template_loop_category_link_close - 10 */ do_action( 'woocommerce_after_subcategory', $category ); ?> </li>
Thanks for any help.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Double category name and count’ is closed to new replies.