Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the shipping address fields, but only when shipping address is needed for the order.
Used to output a required control hidden field for setting shipping address different than billing address.
Parameters #
$checkout(WC_Checkout) WooCommerce checkout object.
Examples #
/**
* Add shipping fields intro
*/
function add_shipping_fields_intro() {
echo '<p>Please make sure to double check your information!</p>';
}
add_action( 'fc_before_checkout_shipping_address_wrapper', 'add_shipping_fields_intro', 10 );
