Skip to content

Instantly share code, notes, and snippets.

@MindyPostoff
Created December 31, 2015 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MindyPostoff/5e0f1ba711e83c54a833 to your computer and use it in GitHub Desktop.
Save MindyPostoff/5e0f1ba711e83c54a833 to your computer and use it in GitHub Desktop.
Recurring Fees
<?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