-
AuthorPosts
-
March 15, 2020 at 4:08 pm #1193233Manoj TiwariGuest
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
March 15, 2020 at 10:52 pm #1193344Hey 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,
MikeMarch 16, 2020 at 2:28 am #1193361I 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?
March 16, 2020 at 5:29 am #1193397Hi,
Thanks for the update, I’m having problems understand your last post though. Could you try to explain a bit further please?
Best regards,
RikardMarch 16, 2020 at 5:36 am #1193398Manoj TiwariGuestRight 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
March 16, 2020 at 5:39 am #1193399Manoj TiwariGuestRight 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
March 16, 2020 at 10:36 am #1193421Hi,
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,
RikardApril 19, 2020 at 7:05 pm #1205315In 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
April 19, 2020 at 7:08 pm #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
April 19, 2020 at 9:22 pm #1205322Hi,
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,
MikeApril 20, 2020 at 2:03 am #1205356Thankyou Sir
April 20, 2020 at 11:36 am #1205467Hi,
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 -
AuthorPosts
- The topic ‘upgrade from 4.6.1 to 4.7.3 with old settings’ is closed to new replies.