Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires after the billing address fields section.
Examples #
/**
* Add billing step footer
*/
function add_billing_footer() {
echo '<p>Please review your billing information before proceeding</p>';
}
add_action( 'fc_checkout_after_step_billing_fields', 'add_billing_footer', 10 );
