PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.7.2
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.7.2
2.7.0 2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 All 43 releases
sellkit / includes / elementor / modules / checkout / templates / cart-item-data.php

cart-item-data.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.7.2, at includes/elementor/modules/checkout/templates/cart-item-data.php

32 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Cart item data (when outputting non-flat)
4 *
5 * This template can be overridden by copying it to yourtheme/woocommerce/cart/cart-item-data.php.
6 *
7 * HOWEVER, on occasion WooCommerce will need to update template files and you
8 * (the theme developer) will need to copy the new files to your theme to
9 * maintain compatibility. We try to do this as little as possible, but it does
10 * happen. When this occurs the version of the template file will be bumped and
11 * the readme will list any important changes.
12 *
13 * @see https://docs.woocommerce.com/document/template-structure/
14 * @package WooCommerce\Templates
15 * @version 2.4.0
16 */
17
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit;
20 }
21 ?>
22
23 <?php foreach ( $item_data as $key => $data ) : ?>
24 <span class="sellkit-checkout-variation-item">
25 <?php echo wp_kses_post( $data['key'] ) . ':'; ?>
26 <?php echo wp_kses_post( $data['display'] ); ?>
27 </span>
28 <?php if ( array_key_last( $item_data ) !== $key ) : ?>
29 <?php echo '<i class="fas fa-slash"></i>'; ?>
30 <?php endif; ?>
31 <?php endforeach; ?>
32