fc_shipping_methods_before_packages

Table Of Contents

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

Description #

Fires before the shipping packages are displayed in the shipping methods sub-step.

Examples #

/**
 * Add shipping methods header
 */
function add_shipping_methods_header() {
    echo '<div>Choose Shipping Method</div>';
}
add_action( 'fc_shipping_methods_before_packages', 'add_shipping_methods_header', 10 );

What are your feelings

Updated on February 27, 2026