fc_checkout_before_step_shipping_fields_inside

Table Of Contents

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

Description #

Fires before the shipping address fields section contents.

Examples #

/**
 * Add shipping fields intro
 */
function add_shipping_fields_intro() {
    echo '<p>Enter your shipping address</p>';
}
add_action( 'fc_checkout_before_step_shipping_fields_inside', 'add_shipping_fields_intro', 10 );

What are your feelings

Updated on February 27, 2026