fc_billing_step_hook_priority

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

Description #

Controls the priority of billing step hooks execution.

Parameters #

  • $priority (int) The hook priority. Defaults to 30.

Examples #

/**
 * Change billing step hooks priority
 */
function change_billing_step_hooks_priority( $priority ) {
    // Force billing step before shipping
    return 15;
}
add_filter( 'fc_billing_step_hook_priority', 'change_billing_step_hooks_priority', 10 );

What are your feelings

Updated on December 15, 2025