Files
carpseeds.pl/wp-content/plugins/jet-blocks/templates/jet-blocks-cart/global/cart-totals.php
2024-07-15 11:28:08 +02:00

19 lines
371 B
PHP

<?php
/**
* Cart totals template
*/
$elementor = Elementor\Plugin::instance();
$is_edit_mode = $elementor->editor->is_edit_mode();
if ( ( $is_edit_mode && ! wp_doing_ajax() ) || null === WC()->cart ) {
$totals = '';
} else {
$totals = wp_kses_data( WC()->cart->get_cart_subtotal() );
}
?>
<span class="jet-blocks-cart__total-val"><?php
echo $totals;
?></span>