????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/eaabusiness.com/wp-content/themes/globeco/woocommerce/ |
Upload File : |
<?php /** * The Template for displaying all single products. * * Override this template by copying it to yourtheme/woocommerce/single-product.php * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } get_header( 'shop' ); global $cws_theme_funcs; ob_start(); /** * woocommerce_sidebar hook. * * @hooked woocommerce_get_sidebar - 10 */ do_action( 'woocommerce_sidebar' ); $woo_sidebar = ob_get_clean(); $woo_sb_position = ''; if($cws_theme_funcs){ $woo_sb_position = $cws_theme_funcs->cws_get_option('woo_sb_layout_single'); } $class_container = 'page_content' . ( ! empty( $woo_sidebar ) && ($woo_sb_position != 'none') ? ' single_sidebar' : '' ); ?> <div class="<?php echo esc_attr($class_container) ?>"> <div class="container"> <?php echo ! empty( $woo_sidebar ) && ($woo_sb_position == 'left') ? "<aside class='sb_left'>" . $woo_sidebar . '</aside>' : ''; echo ! empty( $woo_sidebar ) && ($woo_sb_position == 'right') ? "<aside class='sb_right'>" . $woo_sidebar . '</aside>' : ''; ?> <main> <?php /** * woocommerce_before_main_content hook * * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content) * @hooked woocommerce_breadcrumb - 20 */ do_action( 'woocommerce_before_main_content' ); ?> <?php while ( have_posts() ) : the_post(); ?> <?php wc_get_template_part( 'content', 'single-product' ); ?> <?php endwhile; // end of the loop. ?> <?php /** * woocommerce_after_main_content hook * * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content) */ do_action( 'woocommerce_after_main_content' ); ?> </main> </div> </div> <?php get_footer( 'shop' ); ?>