Hi @zaja,
All bank account details are added on the Thank You page as a single paragraph, so it’s not possible to only show the account name, in one place, or only IBAN in the other. If you’d like to customise how the account details are presented there, you may want to:
– Use the woocommerce_bacs_accounts
filter to change which accounts are showing, or the woocommerce_bacs_account_fields
to selectively add / remove account detail fields,
– Use CSS code to rearrange the fields on the Thank you page. Each field has a CSS class which is the same as the field name (for example: '.bank_name'
, '.account_number'
, '.iban'
, etc.).
Cheers!