????JFIF??x?x????'
Server IP : 104.21.112.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/dchsreunion.com/wp-content/themes/celebration/woocommerce/single-product/ |
Upload File : |
<?php /** * Single Product title * * @author WooThemes * @package WooCommerce/Templates * @version 8.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $post, $product; $cat_count = sizeof( get_the_terms( $post->ID, 'product_cat' ) ); $review_count = $product->get_review_count(); $rating_count = $product->get_rating_count(); $average = $product->get_average_rating(); $subtitle = ''; if ( get_option( 'woocommerce_enable_review_rating' ) !== 'no' ) { if ( comments_open() ) { $subtitle = '<span class="btNoStarRating"></span>'; } if ( $rating_count > 0 ) { if ( boldthemes_woocommerce_is_new_version() ) { $subtitle = wc_get_rating_html( $product->get_average_rating() ); }else{ $subtitle = $product->get_rating_html(); } } if ( wc_product_sku_enabled() && ( $product->get_sku() || $product->is_type( 'variable' ) ) ) { $sku = $product->get_sku() ? $product->get_sku() : esc_html__( 'N/A', 'celebration' ); $subtitle .= '<span class = "btProductSKU">' . esc_html__( 'SKU:', 'celebration' ) . ' ' . $sku . '</span>'; } } if ( boldthemes_woocommerce_is_new_version() ) { $supertitle = '<span class = "btArticleCategories">' . wc_get_product_category_list( $product->get_id(),'', '<span class="btArticleCategory">', '</span>' ) . "</span>"; }else{ $supertitle = '<span class = "btArticleCategories">' . $product->get_categories( '', '<span class="btArticleCategory">', '</span>' ) . "</span>"; } $dash = boldthemes_get_option( 'shop_use_dash' ); if ( $dash != '' ) { $dash = 'bottom'; } echo boldthemes_get_heading_html( $supertitle, get_the_title(), $subtitle, 'extralarge', $dash, '', '' ) ; ?>