Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Modifies which fields are displayed in the contact step.
Parameters #
$field_ids(array) Array of field IDs to display in contact step.
Examples #
/**
* Add custom field to contact step
*/
function add_custom_field_to_contact_step( $field_ids ) {
$field_ids[] = 'custom_field';
return $field_ids;
}
add_filter( 'fc_checkout_contact_step_field_ids', 'add_custom_field_to_contact_step', 10 );
