Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #371494

    Hello

    I am using Enfold on my webisite, together with WPML.

    Now, on a website that I’ve build before, I see the WPML language switcher inside the Enfold Theme Options Panel. See the screenshot here: https://dl.dropboxusercontent.com/u/9404156/Enfold-WPML.jpg

    But on the site that I am building now … I don’t see that language switcher in the Options Panel.

    How come? And how can I ‘bring it back’?

    Thank you for the quick response!

    #371813

    Hey jurgen1979!

    Let’s try the following.

    1. Deactivate all plugins except WPML and make sure WPML is updated.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    If you still cannot see it after doing those two steps then send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    #386464

    Hi,
    I’m having the same issue, I don’t see different language options in the Theme Options section.
    I’ve tried disabling plugins and even installing the latest Enfold version on a fresh WordPress install with only WPML.
    Still no options.

    https://dl.dropboxusercontent.com/s/0wpzz8ofxnn3qtk/Enfold_WPML_theme_options_issue.png

    Theme, plugins, WordPress, all are up to date.

    Thanks in advance for your help.

    • This reply was modified 9 years, 9 months ago by youtea. Reason: Finally managed to get the image to show!!!!
    #387362

    Hey!


    @youtea
    , If your still having problems after doing the steps in my previous post then send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    #387377
    This reply has been marked as private.
    #387995

    Hey!

    Your using WPML version 3.2-a3. Is that an alpha version?

    I think the latest version should be 3.1.9.

    Regards,
    Elliott

    #388384

    Thanks Elliot,
    Yes I originally downloaded whatever the latest version was on WPML.org and didn’t realise it’d be an issue.
    But I’ve now installed 3.1.9 and it works and the issue is resolved.
    Thanks again!

    Another question though, how do I install other language fonts so they appear as options in the Theme Options font section dropdowns?

    #388924

    Hey!

    It is possible with this filter on functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }

    Use google fonts. https://www.google.com/fonts

    Regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.