Jump to content

Вставить изображение


Recommended Posts

Подскажите пожалуйста, как вставить изображение на страницу "Мой магазин" вместо карты GOOgle ?

В шаблоне stores.tpl вашей темы, а <div id="map"></div> можно убрать

Link to comment
Share on other sites

В шаблоне stores.tpl вашей темы, а <div id="map"></div> можно убрать

 

Лучше в папке override/controllers создать файл StoresController.php с таким кодом:

 

class StoresController extends StoresControllerCore
{
   public function initContent()
   {
    $this->setTemplate(_PS_THEME_DIR_.'stores_new.tpl');
   }
   public function setMedia()
   {
    parent::setMedia();
    $this->addCSS(_THEME_CSS_DIR_.'stores_new.css');
   }
}

 

Где stores_new.tpl - новый шаблон, а stores_new.css - новый файл стилей

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...