anuram Posted April 23, 2011 Share Posted April 23, 2011 How can i remove "A good beginning... ","PrestaShop Link" and "PrestaShop News" from backoffice?if any one knows that pls do help.....i am using PrestaSho 1.4.0.17 Link to comment Share on other sites More sharing options...
anuram Posted April 26, 2011 Author Share Posted April 26, 2011 Thax a lot......it workd.Can u pls tell me,how to change the name "prestashop" that appears in the browser in back offic??? Link to comment Share on other sites More sharing options...
anuram Posted April 26, 2011 Author Share Posted April 26, 2011 again thx 4 ur relpy.i removed the "prestashop" title from "admin/header.inc.php",but i dont see any problam yet[its been only 2 hr sinc i changd and i havnt added any products yet to my site].Is it better to put "prestashop" back??? Link to comment Share on other sites More sharing options...
screentekdesignsltd Posted May 9, 2011 Share Posted May 9, 2011 I would, just to be safe Link to comment Share on other sites More sharing options...
LLT Posted August 16, 2011 Share Posted August 16, 2011 so how exactly are those boxes removed? This post doesn't explain the procedure. Update: I figured it out Link to comment Share on other sites More sharing options...
Kevin229 Posted August 25, 2011 Share Posted August 25, 2011 Hi Can you explain the procedure in removing the news iframes etc? Is it as simple as deleting the iframe code from the page? Link to comment Share on other sites More sharing options...
LLT Posted August 26, 2011 Share Posted August 26, 2011 I don't know if it's the correct procedure but I found them admin/tabs/AdminHome.php in v1.4.4 Link to comment Share on other sites More sharing options...
mbmbmb Posted October 10, 2011 Share Posted October 10, 2011 i found it in adminfolder/ajax.php. just comment this line ...'<!--<iframe frameborder="no" style="margin: 0px; padding: 0px; width: 315px; height: 290px;" src="'.$protocol.'://www.prestashop.com/rss/news2.php?v='._PS_VERSION_.'&lang='.$isoUser.'"></iframe>-->'; Link to comment Share on other sites More sharing options...
sonixax Posted December 1, 2011 Share Posted December 1, 2011 Its very easy Just Remove : echo ' <div id="discover_prestashop"> <p class="center"><img src="../img/loader.gif" alt="" /> '.translate('Loading...').'</p> </div> </div> <div class="clear"></div>'; and : <script type="text/javascript"> $(document).ready(function() { $.ajax({ url: "ajax.php", dataType: "json", data: "getAdminHomeElement", success: function(json) { if (json.screencast != \'NOK\') $(\'#adminpresentation\').fadeIn(\'slow\'); else $(\'#adminpresentation\').fadeOut(\'slow\'); $(\'#partner_preactivation\').fadeOut(\'slow\', function() { if (json.partner_preactivation != \'NOK\') $(\'#partner_preactivation\').html(json.partner_preactivation); else $(\'#partner_preactivation\').html(\'\'); $(\'#partner_preactivation\').fadeIn(\'slow\'); }); $(\'#discover_prestashop\').fadeOut(\'slow\', function() { if (json.discover_prestashop != \'NOK\') $(\'#discover_prestashop\').html(json.discover_prestashop); else $(\'#discover_prestashop\').html(\'\'); $(\'#discover_prestashop\').fadeIn(\'slow\'); }); }, error: function(XMLHttpRequest, textStatus, errorThrown) { $(\'#adminpresentation\').fadeOut(\'slow\'); $(\'#partner_preactivation\').fadeOut(\'slow\'); $(\'#discover_prestashop\').fadeOut(\'slow\'); } }); }); </script> <div id="partner_preactivation"> <p class="center"><img src="../img/loader.gif" alt="" /> '.translate('Loading...').'</p> </div> from the adminhome.php 1 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