Created
December 31, 2015 19:44
-
-
Save MindyPostoff/5e0f1ba711e83c54a833 to your computer and use it in GitHub Desktop.
Recurring Fees
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php foreach ( $recurring_carts as $recurring_cart_key => $recurring_cart ) : ?> | |
<?php foreach ( $recurring_cart->get_fees() as $fee ) : ?> | |
<tr class="fee"> | |
<th><?php echo esc_html( $fee->name ); ?></th> | |
<td data-title="<?php echo esc_html( $fee->name ); ?>"><?php wc_cart_totals_fee_html( $fee ); ?></td> | |
</tr> | |
<?php endforeach; ?> | |
<?php endforeach; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment