Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the shipping address only form fields section.
Parameters #
$checkout(WC_Checkout) WooCommerce checkout object.
Examples #
/**
* Add shipping form intro
*/
function add_shipping_form_intro( $checkout ) {
echo '<div style="margin-top: 2rem;">Complete your shipping information</div>';
}
add_action( 'fc_before_checkout_shipping_only_form', 'add_shipping_form_intro', 10 );
