seanr22a Posted March 1, 2023 Share Posted March 1, 2023 I'm slowly converting from 1.6 to 8.01 but I can't find out how to remove the logo top left. I'm on Linux/Apache, Prestashop 8.01, default theme. Backoffice menu: Design -> Theme & Logo Here you can add the Company logo that will show up top left but I don't want it. If I just remove the image I get an empty space there the logo would be. How can I get rid of the reserved space there the logo would be ? Link to comment Share on other sites More sharing options...
ps8modules Posted March 2, 2023 Share Posted March 2, 2023 Hi. This can be done by editing the header.tpl file in the folder ./themes/classic/theme/_partials/ Link to comment Share on other sites More sharing options...
WebDesk Solution Posted March 2, 2023 Share Posted March 2, 2023 Hello @seanr22a To remove the logo from the header, please follow the steps here: Step 1: Goto this path in your project directory themes\classic\templates\_partials and you will find the header.tpl file in this directory. Step 2: Now Open the header.tpl file and remove the below code for removing the company logo from the header section. <div class="col-md-2 hidden-sm-down" id="_desktop_logo"> {if $shop.logo_details} {if $page.page_name == 'index'} <h1>{renderLogo}</h1> {else} {renderLogo} {/if} {/if} </div> You will find this code around line no 61 in the header.tpl file. After removing this code, save the file and clear the cache if required and then the logo will be removed from the frontend header section. Please see the screenshot for reference: https://prnt.sc/wpYPAOcHIGrj Hope this helps! If you find our reply helpful, please hit Like it. 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