Hi
In the built in email customizer, with the on-hold email (Customer – order-on-hold) it doesn’t add the bank info if someone at checkout requests pay with Bank Transfer to the email. So the customer only see’s it within the actual order completion email and even then; the block sits outwith the standard css so it goes off screen unless you apply custom css like so –
section.woocommerce-bacs-bank-details {
background: #efefef;
padding: 20px;
margin-bottom: 30px;
}
@media only screen and (min-width: 993px) {
section.woocommerce-bacs-bank-details {
background: #efefef;
max-width: 80%;
margin-left: auto;
margin-right: auto;
display: block;
padding: 20px;
margin-bottom: 30px;
}
}
So can this be fixed with an update? The css above aligns the bank info the rest of the order confirmation page (see private info for actual link that will work when logged in).
Regards the email – I cannot add a standard block as some people will choose cash on collection which again, will affect the email as it’ll then show bank info to pay into on all on-hold orders.
Back to the email issue – there is nothing on it showing the bank info – and woo docs suggest it should be standard here -> https://woocommerce.com/document/bacs/
Hope this makes sense – see private info for images etc.
Thanks