Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/themes/puca/woocommerce/single-product/ |
Upload File : |
<?php /** * Single Product Up-Sells * * @author WooThemes * @package WooCommerce/Templates * @version 3.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product, $woocommerce_loop; if ( sizeof( $upsells ) == 0 ) { return; } if( isset($_GET['releated_columns']) ) { $woocommerce_loop['columns'] = $_GET['releated_columns']; } else { $woocommerce_loop['columns'] = puca_tbay_get_config('releated_product_columns', 4); } $columns_desktopsmall = 3; $columns_tablet = 2; $columns_mobile = 2; $rows = apply_filters( 'puca_supermaket_woo_row_single_full', false,2 ); if($rows) { $rows = 4; $woocommerce_loop['columns'] = 1; $columns_desktopsmall = 1; $columns_tablet = 1; $columns_mobile = 1; } else { $rows = 1; } $active_theme = puca_tbay_get_part_theme(); $show_product_upsells = puca_tbay_get_config('show_product_upsells', true); if ( $upsells && $show_product_upsells ) : ?> <div class="related upsells widget products"> <?php $heading = apply_filters( 'woocommerce_product_upsells_products_heading', esc_html__( 'You may also like…', 'puca' ) ); ?> <?php if ( $heading ) :?> <h3 class="widget-title"><?php echo esc_html( $heading ); ?></h3> <?php endif; ?> <?php wc_get_template( 'layout-products/'.$active_theme.'/carousel-related.php' , array( 'loops'=>$upsells,'rows' => $rows, 'pagi_type' => 'no', 'nav_type' => 'yes','columns'=>$woocommerce_loop['columns'],'screen_desktop'=>$woocommerce_loop['columns'],'screen_desktopsmall'=>$columns_desktopsmall,'screen_tablet'=>$columns_tablet,'screen_mobile'=>$columns_mobile ) ); ?> </div> <?php endif; wp_reset_postdata();