fc_checkout_after_step_shipping_fields_inside

Table Of Contents

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

Description #

Fires after the shipping address fields section contents.

Examples #

/**
 * Add shipping fields help
 */
function add_shipping_fields_help() {
    echo '<p class="shipping-help">Make sure your address is correct</p>';
}
add_action( 'fc_checkout_after_step_shipping_fields_inside', 'add_shipping_fields_help', 10 );

What are your feelings

Updated on February 27, 2026