If you mean having both languages on the page at the same time, one way to do it would be to edit the template fo duplictae the strings (words/phrases) but not translate them.
You would need to search the file for __( or _e( both of which prefix translatable strings.
E.g. This will show the word Description, but will be translated if the site is set up for a language other than American English.
If you were to add on to that it would show both
Description:
Or in the case of a variable
$price_label = ''.__('Choose an Option: ', 'event_espresso').'';
would become
$price_label = ''.__('Choose an Option: ', 'event_espresso').'';
$price_label = $price_label . 'Choose an Option: ';
It is by far from an ideal solution but with a little time and testing it could look OK.
The support post ‘Register page multiple languages’ 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.