tsvetanovah Posted October 10, 2014 Share Posted October 10, 2014 Hello! I can't find the "Powered by PrestaShop" text under the footer links in the footer. It is checked in the CMS Block module but it doesn't appear in the site. I want to edit it to show another text (like copyright info of my store) - but it is impossible if there is no text at all Where do I go to enable it? Link to comment Share on other sites More sharing options...
Paulito Posted October 10, 2014 Share Posted October 10, 2014 Hello I think the easiest way is to change this info in: footer.tpl Paul Link to comment Share on other sites More sharing options...
duredo Posted October 10, 2014 Share Posted October 10, 2014 make sure cms block module hook to footer position Link to comment Share on other sites More sharing options...
tsvetanovah Posted October 10, 2014 Author Share Posted October 10, 2014 make sure cms block module hook to footer position Thank you, indobusana, I already checked this - it is hooked.. Hello I think the easiest way is to change this info in: footer.tpl Paul I am using the Default bootstrap theme. Do you mean that I should edit the footer.tpl that is in the /themes/default-bootstrap folder? What should I edit in it? Link to comment Share on other sites More sharing options...
Paulito Posted October 11, 2014 Share Posted October 11, 2014 Hello again You need to go to: public_html/Your Shop/themes/default-bootstrap/modules/blockcms/blockcms.tpl Scroll down to the bottom of the page you will see this code: (change the code in Red) © 2014 {l s='[1]Ecommerce software by %s[/1]' mod='blockcms' sprintf=['PrestaShop™www.prestashop.com">]} For Example: © 2013 {l s='[1] The name of my shop is, %s[/1]' mod='blockcms' sprintf=['disneylandparis.co.uk] tags=['<a class=_blank" href="http://www.disneylandparis.co.uk">]} Before http://screencast.com/t/LrWyvuLs After http://screencast.com/t/cXlY7X01vbs Paul Link to comment Share on other sites More sharing options...
tsvetanovah Posted October 11, 2014 Author Share Posted October 11, 2014 Thank you again, Paulito! Unfortunately this doesn't help in my case I mean there are only the default links (like 'Categories', 'Information', 'My account'), and I need the "Powered by ......" text below them. Just like in the second picture that I have attached in the first post. Do you have any ideas how can I add the text?This is what I have now in the blockcms.tpl: {if $display_poweredby} <section class="bottom-footer col-xs-12"> <div> © 2014 {l s='[1]Powered by %s[/1]' mod='blockcms' sprintf=['mystore.com'] tags=['<a class="_blank" href="http://www.mystore.com">']} </div> </section> {/if} Maybe the $display_poweredby has been set to false somewhere? Could that be the reason? Link to comment Share on other sites More sharing options...
Whispar1 Posted October 11, 2014 Share Posted October 11, 2014 Here is how mine looks - try typing over the code with your own text as seen below and see if that does it: {if $display_poweredby} <section class="bottom-footer col-xs-12"> <div align="center"> © 2014 Whispar Innovations - All Rights Reserved. <a href="http://www.whispardesign.com" title="Lighting | Home Decor | Window Treatments">whispardesign.com</a></div> </section> {/if} Link to comment Share on other sites More sharing options...
tsvetanovah Posted October 12, 2014 Author Share Posted October 12, 2014 Thanks for your suggestion, Whispar1! I found the solution - I just removed the {if $display_poweredby} clause so that the text is always shown. Now all I have to do is to position it from the CSS file.Thanks to all! Link to comment Share on other sites More sharing options...
Recommended Posts