Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the payment fields step.
Examples #
/**
* Add custom message
*/
function add_custom_message() {
echo '<div>Custom Payment information</div>';
}
add_action( 'fc_checkout_before_step_payment_fields', 'add_custom_message', 10 );
