• Resolved joelinit

    (@joelinit)


    Hello!

    Great plugin, though I need to change user bank details to UK (account number / sort code) instead of the default US (IBAN / Swift etc).

    I’d also like to remove the “My store” icon/link from the dashboard as my site is based on listings not products. Alternatively, can the icon link to the logged in user’s “author” page, as that’s where there listings are?

    Please help!!!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter joelinit

    (@joelinit)

    *I’ve since found out how to remove the store link/logo, but am still struggling with the bank details thing!

    Plugin Author WC Lovers

    (@wclovers)

    Hi,

    Thanks for get in touch with us and cool appreciation.

    Can you please know me which multi-vendor plugin you are using in?

    Also take a screenshot for bank details section screenshot and mark the changes you are looking for.

    I will give you a code snippet to have those changes.

    Thank You

    Thread Starter joelinit

    (@joelinit)

    Thanks so much for your reply.

    I’m using WC Vendors free, and here is a screenshot of the current Dashboard > Settings > Payment fields.

    My website is UK based, so I don’t need Routing Number, IBAN or BIC / Swift. Instead, I just need a “Sort Code” field to go along with the existing Account Name, Account Number and Bank Name fields. So in the end, I’m hoping for a form that looks something like this.

    Thanks again for your quick reply and help…

    Joel

    Plugin Author WC Lovers

    (@wclovers)

    Hi,

    Thanks for your detailed description.

    Here is your code for the purpose –

    function wcfm_wcvendors_custom_settings_fields_billing_bank( $bank_fields ) {
    	if( isset( $bank_fields['wcv_bank_routing_number'] ) ) {
    		$bank_fields['wcv_bank_routing_number']['class'] = 'wcfm_custom_hide';
    		$bank_fields['wcv_bank_routing_number']['label_class'] = 'wcfm_custom_hide';
    	}
    	if( isset( $bank_fields['wcv_bank_iban'] ) ) {
    		$bank_fields['wcv_bank_iban']['class'] = 'wcfm_custom_hide';
    		$bank_fields['wcv_bank_iban']['label_class'] = 'wcfm_custom_hide';
    	}
    	if( isset( $bank_fields['wcv_bank_bic_swift'] ) ) {
    		$bank_fields['wcv_bank_bic_swift']['label'] = __('Sort Code', 'wc-vendors');
    	}
    	
    	return $bank_fields;
    }
    add_filter( 'wcfm_wcvendors_settings_fields_billing_bank', 'wcfm_wcvendors_custom_settings_fields_billing_bank' );

    Just add this at your child theme’s functions.php

    Please know me id this resolve your issue or not!

    Thank You

    Plugin Author WC Lovers

    (@wclovers)

    Hi,

    Hope this is already resolved for you ??

    I am closing this thread here.

    Feel free to reach us anytime.

    Thank You

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change to UK bank details’ is closed to new replies.