Jennym Posted February 23, 2012 Share Posted February 23, 2012 Immediately after loging into the admin panel am getting the message New version of PrestaShop is available! : Download 1.4.7.0 final ! and I want to hide this message forever. Please help. Link to comment Share on other sites More sharing options...
bellini13 Posted February 25, 2012 Share Posted February 25, 2012 in /admin/tabs/AdminHome.php, search for "New PrestaShop version available". you will find the code that executes looking for a new version. just comment out that entire section. on v1.4.6.2, it appears on lines 169-181. your version might be different, Link to comment Share on other sites More sharing options...
Jennym Posted February 26, 2012 Author Share Posted February 26, 2012 Thank you for the prompt attention and reply.. though i was already successful in doing the changes on my own... it was nice hearing from you. Please can you direct me to change the following: admin > modules > now here if I click on plus sign of SEO so it will show the text Google sitemap v1.8 by PrestaShop In this I want change the text by Prestashop. Please help. Link to comment Share on other sites More sharing options...
Jennym Posted February 26, 2012 Author Share Posted February 26, 2012 Just to update this thread I was able to remove prestashop word from the google sitemap and also from VAT No. the next below that... kindly keep me posted if you can help me further. Link to comment Share on other sites More sharing options...
huquma Posted July 9, 2012 Share Posted July 9, 2012 in /admin/tabs/AdminHome.php, search for "New PrestaShop version available". you will find the code that executes looking for a new version. just comment out that entire section. on v1.4.6.2, it appears on lines 169-181. your version might be different, Hi! jennyjm sorry for using your post but Is is possible just to hide the update to a lojistian and show to administrator? thanks Link to comment Share on other sites More sharing options...
bellini13 Posted July 9, 2012 Share Posted July 9, 2012 yes, you would have to look at the logged users profile using a simple IF statement condition, and show accordingly. you could review many of the Admin tabs for examples of where this is performed. If you need further assistance, I can provide a paid service to do this for you. Send me a PM if you are interested. Link to comment Share on other sites More sharing options...
haunter Posted October 31, 2012 Share Posted October 31, 2012 In PS 1.5 edit admin/themes/yourtheme/css/admin.css add: #blockNewVersionCheck{ display: none; } 1 Link to comment Share on other sites More sharing options...
guavalad Posted October 23, 2013 Share Posted October 23, 2013 In PS version 1.5.4.1: /<YOUR ADMIN FOLDER>/themes/default/template/controllers/home/content.tpl You'll see: <div id="blockNewVersionCheck"> {if $upgrade->need_upgrade} <div class="warning warn" style="margin-bottom:10px;"> <h3>{l s='A new version of PrestaShop is available.'} : <a style="text-decoration: underline;" href="{$upgrade->link}" target="_blank">{l s='Download'} {$upgrade->version_name}</a> !</h3> </div> {/if} </div> Delete or comment out the incriminating code. I recommend just commenting out the `.warning` box; that way it still shows up in the HTML source as an occasional reminder for devs. Link to comment Share on other sites More sharing options...
vekia Posted October 23, 2013 Share Posted October 23, 2013 i think that css solution is much easier and it is provided by haunter 2 posts above. anyway, both of them will work well if you will be able to disable also queries to api.prestashop.com it will be wnderful Link to comment Share on other sites More sharing options...
guavalad Posted October 23, 2013 Share Posted October 23, 2013 @vekia The issue with disabling it via CSS is that this is an issue of functionality, not styling, so you degrade the separation between content and presentation. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now