Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WC Vendors › Vendor Payment Setting
- This topic has 1 reply, 2 voices, and was last updated 5 years, 1 month ago by WCFM Forum.
Viewing 1 reply thread
- AuthorPosts
- September 24, 2019 at 8:02 pm #83439soyoungbaekennyParticipant
Hi,
Currently the bank details field in payment setting does not have BSB number which is very important information to transfer money in Australia.
Can I please have the below details only in the bank details page?Account Name
BSB Number
Account Number
Bank BranchThank You!
- September 26, 2019 at 1:51 pm #83747WCFM ForumMember
HI,
Please add this code this for the purpose –
add_filter( 'wcfm_marketplace_settings_fields_billing_bank', function( $bank_fields, $user_id ) { if( isset( $bank_fields['routing_number'] ) ) { $bank_fields['routing_number']['label'] = 'BSB Number'; $bank_fields['routing_number']['placeholder'] = 'BSB Number'; } $bank_fields = wcfm_hide_field( 'bank_addr', $bank_fields ); $bank_fields = wcfm_hide_field( 'iban', $bank_fields ); $bank_fields = wcfm_hide_field( 'swift', $bank_fields ); $bank_fields = wcfm_hide_field( 'ifsc', $bank_fields ); return $bank_fields; }, 50, 2 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
- AuthorPosts
Viewing 1 reply thread
- The topic ‘Vendor Payment Setting’ is closed to new replies.