I would like my clients to be able to pay via bank transfer. Therefore, I would like to include a note with my banking details.
Is it possible to have this feature in Amelia? If not, would it be possible to modify the "Pay on Site" payment method to "Bank Transfer" and add the necessary bank details?
Currently, there is no built-in feature in Amelia to add bank transfer details directly to the payment options. However, you can modify the "Pay on Site" payment method to include your bank details as a note.
Please let me know if you need further guidance on this.
Ok I will modify the text "Pay on Site" by "Bank Transfer" in the personnalisation section. Where can I add my bank details and communication as a note?
To modify the "Pay on Site" text, you can go to the Customize section in the Amelia settings and change the label to "Bank Transfer."
To add your bank details and communication as a note, you can customize the "The payment will be done on-site" label in the same section. This allows you to include specific information, such as bank account details or any other communication instructions you wish to provide to customers.
Let me know if you need any further assistance with this!
Ok! Is there a way to redirect people to another page after clicking on "Pay on spot / Bank transfer" > Book event? I know that a lot of people won't read the note and will direct click on "Book event" after having selected the "Pay on spot / Bank transfer". They will miss the bank details.. Ideally I will create a page with the detail and I would like to link that page to the button "Book event"
Thanks for the clarification! Based on your provided selector, here's the updated JavaScript snippet to redirect users upon clicking the "Book Event" button:
document.addEventListener('DOMContentLoaded', function () { const bookButton = document.querySelector('#amelia-container > div.am-fs__main > div > div.am-fs__main-footer > button'); if (bookButton) { bookButton.addEventListener('click', function (e) { e.preventDefault(); // Prevent default action // Check if "Pay on spot" or "Bank transfer" was selected const paymentMethod = document.querySelector('input[name="payment_method"]:checked'); if (paymentMethod && (paymentMethod.value === 'pay_on_spot' || paymentMethod.value === 'bank_transfer')) { // Redirect to your custom page window.location.href = 'https://yourdomain.com/payment-details'; } else { // Allow normal booking behavior for other payment methods bookButton.closest('form').submit(); } }); } });
Explanation:
Selector: Targets the specific button based on your structure.
Payment Method Check: Ensures redirection occurs only when "Pay on Spot" or "Bank Transfer" is selected.
Default Behavior: For other payment methods, it proceeds with the regular booking process.
Replace https://yourdomain.com/payment-details with your custom page URL. Let me know if you need more adjustments!
Hello,
I would like my clients to be able to pay via bank transfer. Therefore, I would like to include a note with my banking details.
Is it possible to have this feature in Amelia? If not, would it be possible to modify the "Pay on Site" payment method to "Bank Transfer" and add the necessary bank details?
Thank you for your assistance.
Best regards,
Hello,
Currently, there is no built-in feature in Amelia to add bank transfer details directly to the payment options. However, you can modify the "Pay on Site" payment method to include your bank details as a note.
Please let me know if you need further guidance on this.
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Ok I will modify the text "Pay on Site" by "Bank Transfer" in the personnalisation section.
Where can I add my bank details and communication as a note?
Thanks
Hello,
To modify the "Pay on Site" text, you can go to the Customize section in the Amelia settings and change the label to "Bank Transfer."
To add your bank details and communication as a note, you can customize the "The payment will be done on-site" label in the same section. This allows you to include specific information, such as bank account details or any other communication instructions you wish to provide to customers.
Let me know if you need any further assistance with this!
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Ok! Is there a way to redirect people to another page after clicking on "Pay on spot / Bank transfer" > Book event?
I know that a lot of people won't read the note and will direct click on "Book event" after having selected the "Pay on spot / Bank transfer". They will miss the bank details.. Ideally I will create a page with the detail and I would like to link that page to the button "Book event"
Hello Audrey,
Thanks for the clarification! Based on your provided selector, here's the updated JavaScript snippet to redirect users upon clicking the "Book Event" button:
Explanation:
Replace https://yourdomain.com/payment-details with your custom page URL. Let me know if you need more adjustments!
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables