Support

Home Forums Translations Editing Confirm Registration Button & editing text

Editing Confirm Registration Button & editing text

Posted: February 15, 2013 at 12:33 am

Viewing 2 reply threads


Clare Christie

February 15, 2013 at 12:33 am

Hi, my attendees are not completing the full registration as it appears they are not seeing the ‘confirm registration’ button. Can I make this more visible. The other issue I’m encountering is in the payment options during registration. It says ‘Offsite’ for the Paypal option and ‘Offline’ for the Direct Deposit option. Is there any way I can edit offsite to Paypal and Offline to Direct Deposit in Event Espresso.
Another thing I was wondering is if there is an automatic setting if there is payment for ‘couples’ that instead of saying ‘toggle attendees limit 2’ it could say ‘details of second attendee? Sorry for the 3 questions in one but they are all related to editing.


Clare Christie

February 15, 2013 at 12:34 am

My website is http://www.harmonyathome.com.au


Josh

  • Support Staff

February 15, 2013 at 12:53 pm

Hi Clare,

It looks like you’re running an older version of Event Espresso (3.1.15.P)

Since that version we’ve put a lot of work into the payment options page, so it looks a lot nicer than what it did before.

In general, if you want to change text strings, I recommend using the gettext filter. Here is some example code that can be adapted and added to your theme’s functions.php file.

<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
function mycustom_filter_gettext( $translated, $original, $domain ) {
// This is an array of original strings
// and what they should be replaced with
$strings = array(
'Register' => 'Sign up',
'Confirm and go to payment page' => 'Complete registration',
'No events available...' => 'No upcoming classes at this time...',
'click here to add a new state/province' => 'click here to enter address outside US/Canada',
// Add some more strings here
);
// See if the current string is in the $strings array
// If so, replace its translation
if ( isset( $strings[$original] ) ) {
// This accomplishes the same thing as __()
// but without running it through the filter again
$translations = get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'mycustom_filter_gettext', 10, 3 );

You can also use Poedit to do the same thing:

https://eventespresso.com/wiki/how-to-change-wording-with-poedit/

You can make the confirm registration link stand out by adding some custom style rules. There’s a tutorial here:

https://eventespresso.com/wiki/using-css3-to-style-links/

Viewing 2 reply threads

The support post ‘Editing Confirm Registration Button & editing text’ 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