Jump to content

How can i remove "A good beginning... ","PrestaShop Link" and "PrestaShop News" from backoffice?


Recommended Posts

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

  • 2 weeks later...
  • 3 months later...
  • 2 weeks later...
  • 1 month later...

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

  • 1 month later...

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 ;)

  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...