Jump to content

"Powered by Prestashop" - footer - disappeared


Recommended Posts

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?

post-836966-0-30115100-1412941172_thumb.jpg

post-836966-0-95194800-1412941172_thumb.jpg

Link to comment
Share on other sites

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

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"&gt]}

 

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"&gt]}

 

Before

http://screencast.com/t/LrWyvuLs

 

After

http://screencast.com/t/cXlY7X01vbs

 

Paul

Link to comment
Share on other sites

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

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

×
×
  • Create New...