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 to30
.
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 );