WPIntell

Source evidence

Change text visible after completing booking and payment.

Events Manager Pro – Mollie Payments · support · 2021-02-23T23:50:00+00:00

complaintsentiment
highseverity
0.85relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

9 / 34 rows with source links

26.5% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

25 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
johnplant unresolved
Hello and good evening, I am trying to change the text and redirect URL after a successful payment. Concerning this page: https://ps.w.org/stonehenge-em-mollie/assets/screenshot-3.png?rev=1922912 It’s when the mollie payment is successful and you get redirected with the “em_mollie_return=22” Where can I change this body content and button (style and text) displayed? Hi @johnplant , You can pick the return page from the “Redirect Page” (or “Terugkeer-pagina” in Dutch) dropdown in the Mollie Settings Page. Events -> Payment Gateways -> Mollie -> Settings. Please note that the “em_mollie_return” part is required and automatically added to the chosen permalink. When your vistor has been redirected to the Mollie Payment page, the Events Manager Booking object to no longer global. The plugin “listens” for “em_mollie_return” to fetch the corresponding EM Booking from your database (in your example EM Booking ID 22) to display the correct payment status, because Mollie allows your visitor to cancel the payment. The line “The status of your payment is:” can be changed in the same settings page. The second line (“Booking successful. You will receive a confirmation email shortly”) is the booking feedback message in your Events Manager Settings. Events -> Settings -> Bookings -> Customize Feedback Messages -> Booking form feedback messages. To change the output after the correct booking and its payment status have been fetched, you can use the em_mollie_payment_feedback filter. function my_mollie_return( $result ) { // Do stuff. return $result; } add_filter( 'em_mollie_payment_feedback', 'my_mollie_return', 10, 1 );

Comments

1 shown
Stonehenge Creations 2021-02-24T00:53:00+00:00

Hi @johnplant , You can pick the return page from the “Redirect Page” (or “Terugkeer-pagina” in Dutch) dropdown in the Mollie Settings Page. Events -> Payment Gateways -> Mollie -> Settings. Please note that the “em_mollie_return” part is required and automatically added to the chosen permalink. When your vistor has been redirected to the Mollie Payment page, the Events Manager Booking object to no longer global. The plugin “listens” for “em_mollie_return” to fetch the corresponding EM Booking from your database (in your example EM Booking ID 22) to display the correct payment status, because Mollie allows your visitor to cancel the payment. The line “The status of your payment is:” can be changed in the same settings page. The second line (“Booking successful. You will receive a confirmation email shortly”) is the booking feedback message in your Events Manager Settings. Events -> Settings -> Bookings -> Customize Feedback Messages -> Booking form feedback messages. To change the output after the correct booking and its payment status have been fetched, you can use the em_mollie_payment_feedback filter. function my_mollie_return( $result ) { // Do stuff. return $result; } add_filter( 'em_mollie_payment_feedback', 'my_mollie_return', 10, 1 );