Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ahsannayem/115b98a84a596feef8e454219ad4f3f4 to your computer and use it in GitHub Desktop.
Save ahsannayem/115b98a84a596feef8e454219ad4f3f4 to your computer and use it in GitHub Desktop.
Fluent Support
add_filter('fluent_support/custom_registration_form_fields', function($fields) {
$fields['phone_number'] = [
'required' => false,
'type' => 'number',
'label' => __('Phone Number', 'fluent-support'),
'id' => 'fst_phone_number',
'placeholder' => __('phone_number', 'fluent-support'),
'wrapper_class' => 'fs_half_field',
];
return $fields;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment