Jump to content

[SOLVED] Edit Admin Site


Recommended Posts

The logo is stored at img/logo.jpg. You can change it by going to Preferences > Appearance. The Prestashop title text is hardcoded in admin/header.inc.php on line 30:

<title>PrestaShop™ - <?php echo translate('Administration panel') ?></title>



To change it to your shop name, change it to this:

<title><?php echo Configuration::get('PS_SHOP_NAME') ?> - <?php echo translate('Administration panel') ?></title>

Link to comment
Share on other sites

  • 2 years later...
×
×
  • Create New...