ecommdev Posted June 1, 2014 Share Posted June 1, 2014 Hello, In the 1.6 backoffice in the footer the prestashop TM and social links, I can't find instructions for either removing the words and links or disabling that function. Can someone please provide instructions where to find the file for editing & instructions for editing? I imagine many people would find this post helpful and if its already been posted before, please provide link to the post. Thank you for your time. Link to comment Share on other sites More sharing options...
vekia Posted June 1, 2014 Share Posted June 1, 2014 open file: /ADMIN_DIR/themes/default/template/footer.tpl there is a code like: <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> / <a href="http://www.prestashop.com/en/training-prestashop?utm_source=backoffice_footer" target="_blank" class="footer_link"> <i class="icon-book"></i> {l s='Training'} </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> remove it :-) 1 Link to comment Share on other sites More sharing options...
Recommended Posts