• test360a

    (@test360a)


    Please in my plugins editor in wp dashboard, where do i go to edit bank/wire information for affiliates in the SETTINGS tab for user frontend?
    The current term used IBAN/SWIFT is not the corrects terms for my country banking system i want to rename to Account Number (IBAN) and Bank Name (SWIFT). So i want to rename/change it

Viewing 1 replies (of 1 total)
  • Juan Coronel

    (@juaancmendez)

    Hello there,
    hope you’re doing well!

    In order to achieve what you need, add this code in the functions.php file of your active child theme:

    if ( ! function_exists( 'yith_wcaf_bacs_gateway_fields_custom' ) ) {
         function yith_wcaf_bacs_gateway_fields_custom( $array ) {     
              $array['bacs_iban']['label']  = 'your custom label';
              $array['bacs_swift']['label'] = 'your custom label';
              return $array;
         }  
         add_filter( 'yith_wcaf_bacs_gateway_fields', 'yith_wcaf_bacs_gateway_fields_custom', 10, 1 );
    }

    You just have to enter the texts you want in the code.

    Try it out and tell us if it works well for you, please.

    Have a nice day!

Viewing 1 replies (of 1 total)

The topic ‘rename iban/swift’ is closed to new replies.