Hi,
despite the phrase is translated in the "phrases" section of the WPforo menu, this phrase is still displayed in English on the front end. I did reset cache but it did not help, although for other phrases translation via the "phrases" section worked fine without cache resetting.
What could be the solution? Thanks.
If you do some changes in Forums > Phrases, please also delete Phrase Cache in Dashboard > Forums > Dashboard admin page (click on Delete Phrase Cache) button. Then Delete website cache and do Ctrl+F5 on forum front.
Also I'd recommend use according language pos/mo files. More information here:
https://wpforo.com/docs/root/translation/translate-using-pot-file/
Thanks Rob.
Thank you for letting us know. We've fixed these phrases in next 1.4.3 version. It'll be released very soon.
In any case if you need this urgently please follow to this instruction:
Open /wp-content/plugins/wpforo/wpf-assets/js/ajax.js file and find this line:
$("#wpf-reply-form-title").html('Reply with quote');
Change it to this:
var phrase = wpforo_phrase('Reply with quote');
phrase = phrase.charAt(0).toUpperCase() + phrase.slice(1);
$("#wpf-reply-form-title").html( phrase );
Then find this line in the same file:
$("#wpf-reply-form-title").html('Edit post');
Change it to this:
var phrase = wpforo_phrase('Edit post');
phrase = phrase.charAt(0).toUpperCase() + phrase.slice(1);
$("#wpf-reply-form-title").html( phrase );
Save it, delete all caches and do Ctrl+F5 on forum front.
Please do not translate phrases in code, they will get the translated values from wpForo Phrases.