woocommerce-subscriptions/templates/checkout/recurring-fee-totals.php
fei-source 432ebde60c Update to v8.5.0
Source: GrootMade/Festinger Vault
2026-03-15 08:31:12 +08:00

19 lines
532 B
PHP

<?php
/**
* Recurring cart fee totals
*
* @author WooCommerce
* @package WooCommerce Subscriptions/Templates
* @version 1.0.0 - Migrated from WooCommerce Subscriptions v3.1.0
*/
defined( 'ABSPATH' ) || exit;
foreach ( $recurring_carts as $recurring_cart_key => $recurring_cart ) {
foreach ( $recurring_cart->get_fees() as $recurring_fee ) { ?>
<tr class="fee recurring-total">
<th><?php echo esc_html( $recurring_fee->name ); ?></th>
<td><?php wc_cart_totals_fee_html( $recurring_fee ); ?></td>
</tr> <?php
}
}