Vendor Payment Setting

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 1 reply thread
  • Author
    Posts
    • #83439
      soyoungbaekenny
      Participant

      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 Branch

      Thank You!

    • #83747
      WCFM Forum
      Keymaster

      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

Viewing 1 reply thread
  • The topic ‘Vendor Payment Setting’ is closed to new replies.