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
Payment Type Name | Event Espresso - Staging Server

Support

Home Forums Event Espresso Premium Payment Type Name

Payment Type Name

Posted: March 3, 2014 at 7:10 am

Viewing 1 reply thread


Kregg Kish

March 3, 2014 at 7:10 am

Hello

I was wondering on the payment confirmation page if you are able to change the name that shows in the Payment Type? Example it now shows Strip but would like it to say Credit Card?

see screen here: http://awesomescreenshot.com/0052fmdm79

Thanks


Josh

March 3, 2014 at 9:05 am

Hi Kregg,

Yes this is possible. One way is to use a little function that filter’s the content of the web page. Here’s something you can add to your custom file add-on’s custom_functions.php file or in a custom snippet plugin that will change the Stripe text to be Credit Card.

add_filter( 'the_content', 'my_change_stripe', 11 );
function my_change_stripe( $content ) {

	$content = str_replace( '<td>Stripe</td>', '<td>Credit Card</td>', $content);

	return $content;

}
Viewing 1 reply thread

The support post ‘Payment Type Name’ 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