Viewing 1 replies (of 1 total)
  • Plugin Author Roland Murg

    (@murgroland)

    Hi Louie,

    To include more fields in the Field Mapping screen, add this filter to your theme’s functions.php file:

    add_filter('wpbs_wc_billing_fields', function($fields){
    $fields['field_key'] = 'Field Name';
    $fields['another_field_key'] = 'Another Field Name';
    return $fields;
    });
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.