Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the billing-only form fields section.
Parameters #
$checkout(WC_Checkout) WooCommerce checkout object.
Examples #
/**
* Add Custom message to Billing only form
*/
function add_custom_message( $checkout ) {
echo '<div>Custom message</div>';
}
add_action( 'fc_before_checkout_billing_only_form', 'add_custom_message', 10, 1 );
