????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/./buyeaa.com/wp-content/themes/yoome/woocommerce/ |
Upload File : |
<?php /** * The template for displaying product category thumbnails within loops * * This template can be overridden by copying it to yourtheme/woocommerce/content-product_cat.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woothemes.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 2.6.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; } $show_cat_title = isset($show_title)?$show_title:true; $show_cat_product_count = isset($show_product_count)?$show_product_count:true; $cat_view_shop_button_text = isset($view_shop_button_text)?$view_shop_button_text:''; $term_link = get_term_link( $category, 'product_cat' ); ?> <section <?php wc_product_cat_class('product-category product', $category); ?>> <div class="product-wrapper"> <?php do_action( 'woocommerce_before_subcategory', $category ); ?> <a href="<?php echo esc_url($term_link) ?>"> <?php /** * woocommerce_before_subcategory_title hook * * @hooked woocommerce_subcategory_thumbnail - 10 */ do_action( 'woocommerce_before_subcategory_title', $category ); ?> </a> <div class="meta-wrapper"> <div class="category-name"> <?php if( $show_cat_title ){ ?> <h3 class="heading-title"> <a href="<?php echo esc_url($term_link) ?>"> <?php echo esc_html($category->name); ?> </a> </h3> <?php } ?> <?php if ( $show_cat_product_count ){ echo apply_filters( 'woocommerce_subcategory_count_html', '<div class="count">' . sprintf( _n( '%s Product', '%s Products', $category->count, 'yoome' ), $category->count ) . '</div>', $category ); } ?> </div> <?php if( $cat_view_shop_button_text ){ ?> <div class="button"> <a href="<?php echo esc_url($term_link) ?>" class="shop-now-button button"> <?php echo esc_html($cat_view_shop_button_text); ?> </a> </div> <?php } ?> </div> <?php /** * woocommerce_after_subcategory_title hook */ do_action( 'woocommerce_after_subcategory_title', $category ); ?> <?php do_action( 'woocommerce_after_subcategory', $category ); ?> </div> </section>