Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-sales domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the better-click-to-tweet domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-amazon domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-stats domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Editing Thank You Page | Event Espresso - Staging Server

Support

Home Forums Event Espresso Premium Editing Thank You Page

Editing Thank You Page

Posted: July 9, 2013 at 7:57 am

Viewing 3 reply threads


Nicole Runde

July 9, 2013 at 7:57 am

On the Thank You page, for “Payment Type” I’d like it to say “Credit Card” instead of “authorize.net SIM.” What’s the best way to achieve that? Thank you!

– Nicole


Josh

July 9, 2013 at 9:33 am

Hi Nicole,

The best way to accomplish this might depend on how many payment options are being offered on your site. If it’s a case where you’re only offering one option: Authorize.net SIM, you could change the /templates/payment_overview.php template on line 18.

This is what you’ll see there:

<?php echo $txn_type == '' ? '' : '<td>' . __('Payment Type:', 'event_espresso') . '</td> <td>' . espresso_payment_type($txn_type) . '</td>'; ?>

which you could change to:

<?php echo $txn_type == '' ? '' : '<td>' . __('Payment Type:', 'event_espresso') . '</td> <td>Credit Card</td>'; ?>

The downside to making this change is it will say Credit Card as long as there is a transaction type, which wouldn’t make sense if there’s a different transaction type.

The other place where this could be changed where it would only affect authnet transactions is in /gateways/authnet/authnet_ipn.php on line 39.


Nicole Runde

July 10, 2013 at 6:12 am

Perfect, this is exactly what I was looking for. We’re only doing one type of payment (authorize) so this will be great. Thank you!


Josh

July 10, 2013 at 8:00 am

You’re welcome.

Viewing 3 reply threads

The support post ‘Editing Thank You Page’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso - Staging Server