![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/walla3t.corals.io/wp-content/themes/apper/woocommerce/ |
<?php /** * Single product template. * * @package Apper WordPress theme */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product; //get framework settings $settings = acmthemes_settings(); do_action( 'before_woo_single_product_content' ); woocommerce_template_single_title(); woocommerce_template_single_rating(); $bkc_single_product_price = apply_filters( 'apper_product_price_tag', true ); if( $bkc_single_product_price ) woocommerce_template_single_price(); $single_product_content_class = 'woo-single-product-content-full'; ?> <div class="<?php echo esc_attr( $single_product_content_class ); ?>"> <?php the_content(); do_action( 'after_woo_single_product_content' ); if( ! isset( $settings['shop_type'] ) || 'default' == $settings['shop_type'] || $product->is_type('external') ) { do_action( 'apper_woo_single_add_to_cart' ); } ?> </div> <?php //show custom product meta acmthemes_show_single_product_meta(); do_action( 'after_woo_single_product_content' );