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;
$fees = WC()->cart->get_fees();
if ($fees) :
foreach ($fees as $fee) : ?>
<div class="fees-cart-wrap ext-item-wrap nasa-flex jbw">
<span class="fees-label ext-item-label">
<?php echo esc_html($fee->name); ?>
</span>
<span class="fees-content ext-item-content">
<?php wc_cart_totals_fee_html($fee); ?>
</span>
</div>
<?php
endforeach;
endif;