Payment method: bank transfer
-
Hello, I need to include the bank account details, but on the description of this payment method it is not possible to include html tags, so all the information became not so easy to read. And I need to show this bank account to client transfer the payment on the "receipt" email too.
How can I do it?
Thank you -
@William-Hatanaka
Sorry !but i am able to understand the queryWhere are you trying to add the bank account details??
Please share some screenshot.Thanks
-
Hello @Vaishali-Agarwal ,
I want to show the bank account on the description of payment method, bank transfer. I want to show this information more clearly with adding break lines like <br/>tags or using other way to make the same effect, if is possible.
Thank you -
Yes you can do it by follow up follow step.
-
Create a blade file under your package
-
In that blade file write the below code
@if(request()->is('checkout/onepage'))
eventBus.$on('after-checkout-payment-section-added', function() {
// write your javascript code here to show bank account on click of payment method.
}); -
-
Hello @shaiv-webkul ,
Sorry, I am new user Bagisto, so I need to create a new package?
And in this package I will create a blade file, the name of the blade file must to be a specific name or it does not matter?
Thank you ! -
Yes you need to create a package for that, it does not matter you can give any name to it.
Thanks