Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #323558

    Hi,

    Since one of the latest theme updates I’ve noticed the back-end of Enfold is also translated even though I have explicitly asked WPML to set the admin as English. I’ve no idea why anyone would want to translate the entire admin section per language unless there is a native user per language or someone knows a hell of a lot of languages.

    I’m using 9 languages and 7 of those are automatically translated in the back-end. For example: my site is translated in Swedish (front-end), but I don’t speak Swedish myself so I don’t need the admin to be translated to that language as I have no idea what the **** any of it means and I therefore have a hard time figuring out what goes where. :)

    I maintain 9 languages myself, so they need to be translated front-end, but stay in English back-end. How can I turn this off please?

    Thanks in advance!

    #324060

    Hey!

    Try installing this plugin:
    https://wordpress.org/plugins/admin-in-english/

    Best regards,
    Josue

    #325139

    I seriously need to install another plugin just to prevent Enfold translating the admin for me even though it was always fine before???

    Why doesn’t Enfold just stop translating my admin by default? I’m sorry to sound harsh, but I’m offended by the fact that something like this is being forced upon my admin. I should have to install a plugin to enable it rather than disable. Very absurd.

    It’s like Apple or Google suddenly change all of your phone contact and app settings even though you didn’t ask for any of it and support tells you “try installing this or that app”.

    #325274

    Hi,

    Can you please check if the issue persists with the default WordPress theme activated?

    Regards,
    Josue

    #337433

    Tried the suggested plugin, but still see it translated.

    The problem is, it basically happens to all Enfold-related fields, such as the advanced layout builder. So no point switching themes. I tried looking in my WPML settings to see if it could be set there, but couldn’t find anything that may have an impact on this.

    #337510

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    #338386
    This reply has been marked as private.
    #340548

    Any feedback?

    #340886

    Hi!

    I’m sorry but we haven’t really tackled this issue before. FYI, the translation (mo/po) file are handed to us by random people who uses Enfold for their own projects. Obviously, they want to translate the theme options and advance layout builder text or strings to their own languages. The only possible way to disable these translations is to use the codestyling localization plugin or edit all po/mo languages file manually which sounds crazy, I agree. Or maybe I’m missing something. I’ll ask Kriesi if he knows any other way to disable this translations. Please wait for his response.

    Best regards,
    Ismael

    #341948

    Totally understand the issue but most people want to translate both front and backend. Those are obviously people who are simply using enfold with the one or two languages they know so i see your problem when it comes to managing 9 languages.

    I think the easiest way might be to trick wordpress into thinking that there is no translation file when in backend. You might want to try the following:

    If you are using a child theme copy the following function to your child themes function.php file, otherwise you need to edit it directly in your themes function.php file at line 241:

    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	function avia_lang_setup()
    	{
    		if(!is_admin())
    		{
    			$lang = apply_filters('ava_theme_textdomain_path', get_template_directory()  . '/lang');
    			load_theme_textdomain('avia_framework', $lang);
    		}
    	}
    }
    

    This change in the function (I have added the is_admin() clause) will tell wordpress to find the translation file when in your frontend but not when you are in the admin area. Let me know if this helps

    #342147

    Perfect solution, Kriesi! Thank you so much for taking the time to help me out, it really means a lot towards efficiency!!

    Sigh, I’m SO glad this got solved now. :)

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Turning off Enfold back-end translation!?’ is closed to new replies.