Comments 13Rui started the conversationJuly 1, 2023 at 10:45pmIn the payment configuration, if the agent chooses bank transfer there are fields that are not necessary!Nowadays, with IBAN PT50 you don't need so much information, at least for payments within Europe. Could these fields be reduced or have the option to do so?Attached files: iban.PNG 2,214WebWizards repliedJuly 2, 2023 at 6:12amHi Rui,You can hide those fields by adding this PHP code snippet to your site: add_action('salesking_dashboard_head', function(){ ?> <style type="text/css"> .salesking_bank_info:nth-child(22), .salesking_bank_info:nth-child(21), .salesking_bank_info:nth-child(20), .salesking_bank_info:nth-child(19), .salesking_bank_info:nth-child(18), .salesking_bank_info:nth-child(17), .salesking_bank_info:nth-child(16){ display:none !important; } </style> <?php }); Sometimes Intermediary Bank Details are needed for SWIFT transfers if you bank with a smaller bank. Sometimes smaller banks cannot receive payments in some currencies directly and they work with a partner (intermediary) bank. Sign in to reply ...
In the payment configuration, if the agent chooses bank transfer there are fields that are not necessary!
Nowadays, with IBAN PT50 you don't need so much information, at least for payments within Europe.
Could these fields be reduced or have the option to do so?
Attached files: iban.PNG
Hi Rui,
You can hide those fields by adding this PHP code snippet to your site:
Sometimes Intermediary Bank Details are needed for SWIFT transfers if you bank with a smaller bank. Sometimes smaller banks cannot receive payments in some currencies directly and they work with a partner (intermediary) bank.