-
Author
-
November 10, 2017 at 22:39 #179500flavianodelgadoParticipant
Hello,
analyzing the site I found this error too.
I searched Loko Translate and did not find where those words are.
Can you help me?
Attachments:
You must be logged in to view attached files.November 11, 2017 at 17:35 #179556Kieran_SQModeratorHi,
Have you used LocoTranslate to find the strings within the BuddyApp theme?
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
November 11, 2017 at 17:42 #179560Kieran_SQModeratorHi,
Thanks for getting back to me so quickly, I am going to forward this ticket to a developer to look into the translation issue for you, they’ll be in touch as soon as they can (Mon to Fri, East Europe Time)
In the meantime, if it is urgent, please use the below snippet in your BuddyApp Child theme’s functions.php file. You can add this to the Child theme’s functions.php by going to Appearance > Editor > BuddyApp Child > Functions.php
COPY CODEfunction change_translate_text_multiple( $translated ) { $text = array( 'Have an account?' => 'New Translation 1', 'Sign in' => 'New Translation 2', ); $translated = str_ireplace( array_keys($text), $text, $translated ); return $translated; } add_filter( 'gettext', 'change_translate_text_multiple', 20 );
Change ‘New Translation 1’ and ‘New Translation 2’ to suit your needs.
Thanks
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
November 13, 2017 at 18:20 #179754RaduModeratorHi,
Tried multiple solutions but cannot debug quick this, i will investigate further this but as temporary solution.
Edit that php file directly by copying this file register.php
from : wp-content/themes/buddyapp/buddypress/members/register.php
to : /wp-content/themes/buddyapp-child/buddypress/members/register.phpEdit in child lines 25 and 26 with your desired text.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 14, 2017 at 20:49 #179862RaduModeratorGreat
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.