| Server IP : 5.129.245.98 / Your IP : 216.73.217.19 Web Server : Apache/2.4.66 (Debian) System : Linux 1b8c17c336b9 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/rehub-theme/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/
* @author WooThemes
* @package WooCommerce/Templates
* @version 9.6.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$classes = array('products', 'col_wrap_three', 'rh-flex-eq-height', 'woorelatedgrid', 'compact_rel_grid');
if ( $cross_sells ) : ?>
<div class="cross-sells">
<?php $heading = apply_filters( 'woocommerce_product_cross_sells_products_heading', esc_html__( 'You may be interested in…', 'rehub-theme' ) );
if ( $heading ) :
?>
<h2 class="font120"><?php echo ''.$heading; ?></h2>
<?php endif; ?>
<?php $ids = array(); ?>
<?php foreach ($cross_sells as $cross_sell){$ids[] = $cross_sell->get_id();} ?>
<?php echo wpsm_woogrid_shortcode(array('gridtype' => 'dealwhite', 'data_source'=> 'ids', 'columns'=>'3_col', 'ids'=> implode(',',$ids), 'price_meta'=> 'productimage', 'iscart'=> '1'));?>
</div>
<?php endif;
wp_reset_postdata();