Default bank account for tagging

Hi @dimck

I assume you mean the bank drop down in the receipt hub?

Unfortunately there isn’t a way of changing the default bank account, unless you have a Power User Subscription. If that’s the case, you could use a little bit of JavaScript to sort it for you, like this:

$(document).ready(function() {
    nominal = 1206;
    currency = 'GBP';
    
    $('#dropBankAccount').val(nominal + '-' + currency);
});

You can put this in your custom JavaScript under Account Settings > Design Customisation > Advanced CSS & HTML > Custom Scripts

Just change the nominal code and currency to match the bank account you wish for it to default to

1 Like