Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1193233
    Manoj Tiwari
    Guest

    2019 September 5th – Version 4.6.1 – right now using this version

    is this possible I keep the same settings of 4.6.1 and upgrade to February 10th, 2020 – Version 4.7.3

    if yes then please let me know the procedure

    #1193344

    Hey Manoj Tiwari,
    Yes you can update and keep your settings, The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp from “enfold” then upload the new “enfold” folder and check that your site is working correctly. This assumes that your current theme folder is named “enfold” if you have custom named it then adjust the naming to suit.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    #1193361

    I know that, but the issue is for that I have to add an old setting to the new one again, which one is very hectic, by the way, do you guys have any such services, where you offer this?

    #1193397

    Hi,

    Thanks for the update, I’m having problems understand your last post though. Could you try to explain a bit further please?

    Best regards,
    Rikard

    #1193398
    Manoj Tiwari
    Guest

    Right now on my website old version of enfold is running, in that old version I did many editing in coding, but now I want to update the theme, but i want to keep my old editing which I twisted in old version

    #1193399
    Manoj Tiwari
    Guest

    Right now on my website old version of enfold is running, in that old version I did many editing in coding, but now I want to update the theme, but I want to keep my old editing which I twisted in the old version

    and do u guys offer any services for this? if yes then please let me know

    #1193421

    Hi,

    Thanks for the update. So you are saying that you have made changes to one or more theme files? If so then which ones? If you have only changed theme settings and added CSS to Quick CSS then you edits should be safe on updates. I would recommend that you backup the site anyway as a safety precaution though.

    We don’t really offer customisations or edits like this through support, but we’ll be happy to try to help you out if you run into problems.

    Best regards,
    Rikard

    #1205315

    In my website, there are more than 80+ pages like this

    https://*******/website-designer/****

    I want to hide my main menu in all those pages, only the logo will be shown and the menu will be hidden, please tell me how to do that

    again only https://**********/website-designer/**** (have 80+ pages) here I have to hide menu

    Thanks

    #1205316

    .page-id-2251 .main_menu {
    display: none;
    }

    I followed this method, but issue is there are around 80-85 pages, so it will be tough to repeat the same thing again and again and in future, I am planning to add more pages like this, so it will easy if you let me know any other easy solution

    #1205322

    Hi,
    Here is a function that will add the css to hide the menu if the text “website-designer” is in the url.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_url_check_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      	if (window.location.href.indexOf("website-designer") > -1) {
        $(".main_menu").css({ 'display': 'none' });
      } else {}
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_url_check_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    #1205356

    Thankyou Sir

    #1205467

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘upgrade from 4.6.1 to 4.7.3 with old settings’ is closed to new replies.