Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #396338

    Hi,
    since the last update to enfold 3.0.8 I have some problems with the translations on my site and with the mobile menu on Android smartphones.
    First, the language on my blog menu is now english for the months in archive instead german like before. The sub menu in dashbord is now a mix between english and german.

    Second, my mobile menu on android has now some issues with the menu, which is now on the right side instead of clicking the menu button. It looks like this:
    Menu on android

    I hope you have any idea?

    Thanks
    Cora

    #396638

    Hi Cora!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 990px) {
    #wrap_all {
    position: relative !important;
    }}

    Best regards,
    Yigit

    #397147

    Hi Yigit,

    thank you – it works fine on my Android smartphone.

    But the language problems are still the same. I want to have my german archive (months with the german names) back. How can I do this? I have a german page, but also some other things were displayed now in english, for instance the comment-field. It is very confusing for me and my readers…

    Cora

    • This reply was modified 9 years, 9 months ago by coralys.
    #397405

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('get_archives_link', 'translate_archive_month');
    
    function translate_archive_month($list) {
      $patterns = array(
        '/January/', '/February/', '/March/', '/April/', '/May/', '/June/',
        '/July/', '/August/', '/September/', '/October/',  '/November/', '/December/'
      );
      $replacements = array(
        'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 
        'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'
      );    
      $list = preg_replace($patterns, $replacements, $list);
    return $list; 
    }

    Best regards,
    Yigit

    #397448

    Thank you Yigit, that works! :)

    Only another short question: Is it possible to create a breadcrumb menu for the years in the blog archive, which is dropdown the monthts of the selected year? The list will be too long with the time. I know the option “Display as dropdown” in the widgets options, but it´s including also only a long list with months. I want to have a aggregation of years. I hope you understand what I mean, because my english is really not so good… ;)

    Best regards
    Cora

    • This reply was modified 9 years, 9 months ago by coralys.
    #397452

    Hey!

    You can try using this plugin – https://wordpress.org/plugins/better-archives-widget/
    If that does not work, unfortunately you are going to need to look for other plugins :)

    Regards,
    Yigit

    #397603

    Hi Yigit,
    you are great! Thank you for your quickly help! To use a plugin for the archive…why didn’t I come up with this myself?!?
    I found a plugin, which is really good for this job, but unfortunately by using this plugin the months are in english again …. :(

    O.k., I have to think about, what I want – a good archive or a german archive … ;)

    Best regards
    Cora

    #397616

    Hi!

    You can contact plugin author and they may help you with translating it. Or you can try using this plugin – https://wordpress.org/plugins/codestyling-localization/ to check if you can translate months on the new archives plugins :)

    Cheers!
    Yigit

    #397654

    Hi,

    I use the plugin codestyling localisation also for a long time, but (since the last theme update?) it shows a error that the enfold js-file from the theme (see below) is delated because it is a “unauthorized injection”?!

    wp-content/themes/enfold/config-wordpress-seo/wpseo-mod.js

    Maybe this is the reason for my problems with the translation since 8.0.1?

    Regards
    Cora

    #398072

    Hi!

    Do you mind creating a temporary admin login and posting it here Cora?

    Regards,
    Yigit

    #398185
    This reply has been marked as private.
    #398762

    Hi!

    I could not see anything wrong with the translations – http://i.imgur.com/Y9CpOWo.png
    I only see “NextCellent Gallery requires a database upgrade” notification.

    Cheers!
    Yigit

    #398775

    Hi Yigit,
    I don´t know what you´re doing, but it seems really, that the translations now are o.k. – until yesterday it was a mix between english and german – in the month´s and in the dashboard. Now it´s all right – I´m very confused.
    But the error warning from the plugin codestyling localisation with the “unauthorized injection” is still the same…

    Screenshot

    Whatever – now it works and I´m happy… :)
    Thank you for your quickly and committed help. Have a nice day…

    Best regards
    Cora

    #398780

    Hey!

    You are welcome Cora, glad we could help. Let us know if you have any other questions or issues. You too have a nice day :)

    Cheers!
    Yigit

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Problems since update 8.0.1’ is closed to new replies.