BlueBell Posted August 5, 2014 Share Posted August 5, 2014 How can I disable the black pop-up bar at the bottom that keeps appearing in my back office? It gets in the way and I have to keep scrolling up to see things behind this bar. Thanks! Link to comment Share on other sites More sharing options...
Paulito Posted August 5, 2014 Share Posted August 5, 2014 Hello Are you talking about the Bar or the social icons that your arrow points to, either way you will need to go to: public_html/Your Shop/admin/themes/default/template/footer.tpl and comment out or delete whatever you do not need, for example to remove the social icons just comment out this code: </div> <div class="col-sm-2 hidden-xs social-networks"> <!--<a class="link-social link-twitter" href="https://twitter.com/PrestaShop" target="_blank" title="Twitter"> <i class="icon-twitter"></i> </a> <a class="link-social link-facebook" href="https://www.facebook.com/prestashop" target="_blank" title="Facebook"> <i class="icon-facebook"></i> </a> <a class="link-social link-github" href="https://github.com/PrestaShop/PrestaShop/" target="_blank" title="Github"> <i class="icon-github"></i> </a> <a class="link-social link-google" href="https://plus.google.com/+prestashop/" target="_blank" title="Google"> <i class="icon-google-plus"></i> </a>--> </div> Before http://screencast.com/t/yRUnPnrkq9 After http://screencast.com/t/4XHmP1hKTd9 Paul Link to comment Share on other sites More sharing options...
BlueBell Posted August 5, 2014 Author Share Posted August 5, 2014 Thanks Paul! This part worked great, I managed to remove the icons. But I'd also like to stop this black bar appearing all the time. Is there a way to disable the entire black strip from popping up? Is there a way to disable it for good? Sorry, I probably didn't describe the task precisely. I'm not a pro, so bear with me! Link to comment Share on other sites More sharing options...
Paulito Posted August 5, 2014 Share Posted August 5, 2014 Hello Try to comment out this: </div> {if $display_footer} <!--<div id="footer" class="bootstrap hide"> <div class="col-sm-2 hidden-xs"> <a href="http://www.prestashop.com/" target="_blank">PrestaShop™ {$ps_version}</a> - <span id="footer-load-time"><i class="icon-time" title="{l s='Load time: '}"></i> {number_format(microtime(true) - $timer_start, 3, '.', '')}s</span> </div> <div class="col-sm-2 hidden-xs social-networks"> <a class="link-social link-twitter" href="https://twitter.com/PrestaShop" target="_blank" title="Twitter"> <i class="icon-twitter"></i> </a> <a class="link-social link-facebook" href="https://www.facebook.com/prestashop" target="_blank" title="Facebook"> <i class="icon-facebook"></i> </a> <a class="link-social link-github" href="https://github.com/PrestaShop/PrestaShop/" target="_blank" title="Github"> <i class="icon-github"></i> </a> <a class="link-social link-google" href="https://plus.google.com/+prestashop/" target="_blank" title="Google"> <i class="icon-google-plus"></i> </a> </div> <div class="col-sm-4 footer-contact"> <p> <a href="http://www.prestashop.com/en/contact_us?utm_source=backoffice_footer" target="_blank" class="footer_link"> <i class="icon-envelope"></i> {l s='Contact'} </a> / <a href="http://forge.prestashop.com/?utm_source=backoffice_footer" target="_blank" class="footer_link"> <i class="icon-bug"></i> {l s='Bug Tracker'} </a> / <a href="http://www.prestashop.com/forums/?utm_source=backoffice_footer" target="_blank" class="footer_link"> <i class="icon-comments"></i> {l s='Forum'} </a> / <a href="http://addons.prestashop.com/?utm_source=backoffice_footer" target="_blank" class="footer_link"> <i class="icon-puzzle-piece"></i> {l s='Addons'} </a> </p> {if $iso_is_fr} <p>Questions • Renseignements • Formations : <strong>+33 (0)1.40.18.30.04</strong> <p> {/if} </div> <div class="col-sm-4"> {hook h="displayBackOfficeFooter"} </div> <div id="go-top" class="hide"><i class="icon-arrow-up"></i></div> </div>--> I think it may be a good idea to check that everything works OK after doing this Paul Link to comment Share on other sites More sharing options...
BlueBell Posted August 5, 2014 Author Share Posted August 5, 2014 (edited) Thanks so much Paul! This worked perfectly! The annoying pop-up is gone! Edited August 5, 2014 by BlueBell (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts