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/cart/ |
Upload File : |
<?php /** * Cross-sells * * This template can be overridden by copying it to yourtheme/woocommerce/cart/cross-sells.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.woocommerce.com/document/template-structure/ * @package WooCommerce/Templates * @version 4.4.0 */ defined( 'ABSPATH' ) || exit; global $product, $woocommerce_loop; if ( sizeof( $cross_sells ) == 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 = 1; $active_theme = puca_tbay_get_part_theme(); if ( $cross_sells ) : ?> <div class="cross-sells related products widget "> <?php $heading = apply_filters( 'woocommerce_product_cross_sells_products_heading', esc_html__( 'You may be like', 'puca' ) ); ?> <?php if ( $heading ) : ?> <h3 class="widget-title"><span><?php echo esc_html( $heading ); ?></h3> <?php endif; ?> <?php wc_get_template( 'layout-products/'.$active_theme.'/carousel-related.php' , array( 'loops'=>$cross_sells,'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();