I looked at the instructions you referred to. I may be being stupid but, when I download and open the languages folder, the only file there seems to be an index.php file.
I can suggest an alternate method that doesn’t involved downloaded, editing, and re-uploading language files though. If you’re comfortable with editing PHP files, there’s a WordPress filter hook you can use to change text strings. Alex Mills wrote how to use it here:
In your case, you’d add the following code to either your theme’s functions.php file or if you have the custom files add-on installed, the custom_functions.php file:
function myee_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Register' => 'Buy Tickets',
// Add some more strings here
);
if ( isset( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'myee_filter_gettext', 10, 3 );
The Add to cart link can be removed by deactivating the Multi Event Registration add-on.
The support post ‘Change 'Register' to 'Buy Tickets'’ 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.
Support forum for the Custom Files add-on for EE3.