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