fc_checkout_before_step_shipping_fields

Table Of Contents

Back to list of all filter and action hooks for Fluid Checkout Lite.

Description #

Fires before the shipping address fields section.

Examples #

/**
 * Add custom message
 */
function add_custom_message() {
    echo '<div>Custom message before shipping fields</div>';
}
add_action( 'fc_checkout_before_step_shipping_fields', 'add_custom_message', 10 );

What are your feelings

Updated on February 27, 2026