File "cross-sells.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/templates/cart/cross-sells.php
File
size: 778 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
defined('ABSPATH') || exit;
if ($cross_sells) {
?>
<div class="cross-sells">
<?php
$heading = apply_filters('woocommerce_product_cross_sells_products_heading', __('You may be interested in…', 'woocommerce'));
if ($heading) {
?>
<h2><?php
echo esc_html($heading);
?></h2>
<?php
}
?>
<?php
woocommerce_product_loop_start();
?>
<?php
foreach ($cross_sells as $cross_sell) {
?>
<?php
$post_object = get_post($cross_sell->get_id());
setup_postdata($GLOBALS['post'] =& $post_object);
wc_get_template_part('content', 'product');
?>
<?php
}
?>
<?php
woocommerce_product_loop_end();
?>
</div>
<?php
}
wp_reset_postdata();