Initial Commit N° : 001 - V.4.3.3

This commit is contained in:
2025-03-28 14:32:57 +01:00
commit 238e5d7999
809 changed files with 371149 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
defined('ABSPATH') || exit;
$coupons = WC()->cart->get_coupons();
if ($coupons) :
foreach ($coupons as $code => $coupon) : ?>
<div class="coupon-wrap ext-item-wrap nasa-flex jbw" data-code="<?php echo esc_attr($coupon->get_code()); ?>">
<span class="coupon-label ext-item-label">
<?php wc_cart_totals_coupon_label($coupon); ?>
</span>
<span class="coupon-content ext-item-content">
<?php wc_cart_totals_coupon_html($coupon); ?>
</span>
</div>
<?php
endforeach;
endif;