How to remove logo in PrestaShop 1.7 ?

Dear Milosz ! Is it possible to completely remove header area, the area where the logo and search bar is placed. I tried to unhook modules and getting around different doing things. I really dont need the logo image and also the header are where the top modules is also placed in prestashop 1.7

Modificaiton of classic PrestaShop 1.7 theme

hello
the only one way to remove logo is theme modification
logo is a part of theme, not a part module so to disable it it is necessary to remove it from header.tpl file
 /themes/classic/templates/_partials/header.tpl

if you dont want whole header just remove the code
  <div class="header-top">
    <div class="container">
      <div class="row">
        <div class="col-md-2 hidden-sm-down" id="_desktop_logo">
          <a href="{$urls.base_url}">
            <img class="logo img-responsive" src="{$shop.logo}" alt="{$shop.name}">
          </a>
        </div>
        <div class="col-md-10 col-sm-12 position-static">
          <div class="row">
            {hook h='displayTop'}
            <div class="clearfix"></div>
          </div>
        </div>
      </div>
      <div id="mobile_top_menu_wrapper" class="row hidden-md-up" style="display:none;">
        <div class="js-top-menu mobile" id="_mobile_top_menu"></div>
        <div class="js-top-menu-bottom">
          <div id="_mobile_currency_selector"></div>
          <div id="_mobile_language_selector"></div>
          <div id="_mobile_contact_link"></div>
        </div>
      </div>
    </div>
  </div>
Share on Google Plus

About VEKIA

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

0 comments:

Post a Comment