safewithyou247 Posted December 21, 2008 Share Posted December 21, 2008 So, have you ever wondered how to change the Powered by PrestaShop link on the footer? Or, have you ever wondered, how do I get that dang footer centered? Well, this how to guide is for you.You will need to open the following file in your fovorate text editor. (Notepad++ for me!)Browse to "\modules\blockvariouslinks". Open "blockvariouslinks.tpl". You will see the below text. > <!-- MODULE Block various links --> </pre> <ul> {l s='Specials' mod='blockvariouslinks'} {l s='New products' mod='blockvariouslinks'} {l s='Top sellers' mod='blockvariouslinks'} {l s='Contact us' mod='blockvariouslinks'} {foreach from=$cmslinks item=cmslink} {$cmslink.meta_title|escape:'htmlall':'UTF-8'} {/foreach} {l s='Powered by' mod='blockvariouslinks'} PrestaShop™ </ul> <br><!-- /MODULE Block various links --> Change the code to the following code (you can just copy and paste if you want). > <!-- MODULE Block various links --> </pre> <ul style="text-align:center;"> {l s='Specials' mod='blockvariouslinks'} {l s='New products' mod='blockvariouslinks'} {l s='Top sellers' mod='blockvariouslinks'} {l s='Contact us' mod='blockvariouslinks'} {foreach from=$cmslinks item=cmslink} {$cmslink.meta_title|escape:'htmlall':'UTF-8'} {/foreach} <!--{l s='Powered by' mod='blockvariouslinks'} PrestaShop™ --> </ul> <br><!-- /MODULE Block various links --> Thats it. If you want to add additional links to the footer you can do it in this file. This is just a html unordered list. Make sure you dont change any of the code in "{}".Hope it helps! 1 Link to comment Share on other sites More sharing options...
Parintelu Posted January 15, 2009 Share Posted January 15, 2009 great man, thanks alot, worked fine, but what about the TEXT? "Powered By PrestaShop" does it have to remain on the page, I meen can I remove the link and the text or just the link ?!?! it's getting confuzing, ) Link to comment Share on other sites More sharing options...
jhnstcks Posted January 15, 2009 Share Posted January 15, 2009 Or you could just edit your global.css file and add the center code as seen below /* Footer */ #footer { border-top: 1px solid #000000; padding-top: 1em; text-align:center; clear: both; Link to comment Share on other sites More sharing options...
sarmenhb Posted April 20, 2009 Share Posted April 20, 2009 actually, all you have to do to center those footer links is#footer .block_various_links { text-align:center;}its bad to insert css into the html because if you forget you did that your going to spend hours trying to figure out why something doesnt work. Link to comment Share on other sites More sharing options...
OzWeb Posted June 30, 2010 Share Posted June 30, 2010 Thanks bro! Link to comment Share on other sites More sharing options...
Guest Posted June 30, 2010 Share Posted June 30, 2010 You can easily add a copyright notice — with a “self-updating” current year display as well. Open this file: \themes\YOUR_THEME\footer.tpl Add this code right after {$HOOK_FOOTER} {l s='Copyright'} © {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'}. {l s='All Rights Reserved'}. Link to comment Share on other sites More sharing options...
simpson7647 Posted August 17, 2010 Share Posted August 17, 2010 hi all, im a littlr stuck.So i opened the film in notepadd++ as instructed, changed it for what the psot said but then what do i do?Do i simple re-upload the file or what?thanksEDIT dont worry i found out how with notepadd++ cheers all Link to comment Share on other sites More sharing options...
skru Posted September 1, 2010 Share Posted September 1, 2010 Hi! allI have try to change by placing the last script in footer.tpl but now is just all footer gone .I have ben change back to back up footer.tpl but nothing I dot now if i Have to reinstal PrestaShop agaun I just cant find whats happend !!Help ! Link to comment Share on other sites More sharing options...
Mikersson Posted October 2, 2010 Share Posted October 2, 2010 Hi! allI have try to change by placing the last script in footer.tpl but now is just all footer gone .I have ben change back to back up footer.tpl but nothing I dot now if i Have to reinstal PrestaShop agaun I just cant find whats happend !!Help ! you dont need to do that, just unpack prestashop in another folder and find out that code line and update it into the file.Care to make it look like the new file. Link to comment Share on other sites More sharing options...
Ramesh Posted December 7, 2010 Share Posted December 7, 2010 Browse to “\modules\blockvariouslinks”. Open “blockvariouslinks.tpl”. You will see the below text.these does not into Presta 1.4/ betahow to do it in 1.4 ? Link to comment Share on other sites More sharing options...
Zenith Posted December 8, 2010 Share Posted December 8, 2010 1.4 - "modules/blockcms/blockcms.tpl" Link to comment Share on other sites More sharing options...
glenwheeler Posted December 10, 2010 Share Posted December 10, 2010 Or you could just edit your global.css file and add the center code as seen below/* Footer */ #footer { border-top: 1px solid #000000; padding-top: 1em; text-align:center; clear: both; Yeah bestto get rid of the css in the page, should all be in the stylesheet. Link to comment Share on other sites More sharing options...
kados2011 Posted January 17, 2011 Share Posted January 17, 2011 Hi, Iam using the prestashop 1.4 beta4 and tried using your code as described in the modules/blockvariouslink/blockvariouslink.tpl but cannot find any of /blockvariouslink/blockvariouslink.tpl these files under modules.Only found blockpermanentlink. Pls help. How do I add the copyright at the footer? Link to comment Share on other sites More sharing options...
rocky Posted January 18, 2011 Share Posted January 18, 2011 In PrestaShop v1.4, the footer code has been moved to the bottom of modules/blockcms/blockcms.tpl.You should create themes//modules/blockcms/blockcms.tpl to override the file. 1 Link to comment Share on other sites More sharing options...
amoon Posted January 23, 2011 Share Posted January 23, 2011 In PrestaShop v1.4, the footer code has been moved to the bottom of modules/blockcms/blockcms.tpl.You should create themes//modules/blockcms/blockcms.tpl to override the file. Thank you for this. I will surely use it in the future.Regards. Link to comment Share on other sites More sharing options...
nuclearholocausto Posted January 28, 2011 Share Posted January 28, 2011 Newb here. Correct me if I'm wrong... but my understanding is that you should not make the changes in the tpl file. The changes should be made in the global.css? Link to comment Share on other sites More sharing options...
rocky Posted January 28, 2011 Share Posted January 28, 2011 That's correct, though you can override module tpl files. Link to comment Share on other sites More sharing options...
nuclearholocausto Posted January 28, 2011 Share Posted January 28, 2011 Thanks Rocky! Will keep that in mind. I'm loving PrestaShop already!!! Been trying to incorporate a shopping cart with Joomla! for a while but always getting stuck at some point. PrestaShop is the answer! Link to comment Share on other sites More sharing options...
HeartSkateCo Posted February 11, 2011 Share Posted February 11, 2011 Funny I had a friend look over my page and the centered footer was his biggest concern.I kept trying several things in the global.css file but nothing seemed to work.safewithyou247 had it right to begin with! Also worked to get rid of/add pages! Link to comment Share on other sites More sharing options...
randei Posted March 4, 2011 Share Posted March 4, 2011 Use Grepwin:Goto mails and search for prestashop or powered by prestashop and replace Link to comment Share on other sites More sharing options...
Don Camillo Posted March 9, 2011 Share Posted March 9, 2011 You can easily add a copyright notice — with a “self-updating” current year display as well. Open this file: \themes\YOUR_THEME\footer.tpl Add this code right after {$HOOK_FOOTER} {l s='Copyright'} © {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'}. {l s='All Rights Reserved'}. I like that!, However powered by is indeed now centered, but copyright and so, is now to the right and all rights reserved is under powered now. How can I center all? Thanks! Don C. Link to comment Share on other sites More sharing options...
schnappi Posted March 19, 2011 Share Posted March 19, 2011 You can easily add a copyright notice — with a “self-updating” current year display as well. Open this file: \themes\YOUR_THEME\footer.tpl Add this code right after {$HOOK_FOOTER} {l s='Copyright'} © {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'}. {l s='All Rights Reserved'}. I like that!, However powered by is indeed now centered, but copyright and so, is now to the right and all rights reserved is under powered now. How can I center all? Thanks! Don C. Add this above any code that you add to center the code (if that doesn't work try adding it next to the tag): Link to comment Share on other sites More sharing options...
schnappi Posted March 19, 2011 Share Posted March 19, 2011 The original solution in this thread originally fixed the issue for me and enabled me to edit the footer. However I recently upgraded to Prestashop version 1.4.0.17 and as said by others the variouslinks module is gone among other things replaced by the blockcms module. However editing the blockcms tpl file does not change the footer. I know my stuff and was rather surprised when any changes that I made to the blockcms tpl file continue to not be displayed. I assume that there is something more ta work here...Would anyone be able to help me with my question? Link to comment Share on other sites More sharing options...
palmtree Posted March 21, 2011 Share Posted March 21, 2011 In PrestaShop v1.4, the footer code has been moved to the bottom of modules/blockcms/blockcms.tpl.You should create themes//modules/blockcms/blockcms.tpl to override the file. I think I found the asnwer to my problem.Indeed, changing the original file in the PS main folder does not do anything.So if I understand well and to be sure that I am not gonna mess with the shop, I follow the procedure as :IN MY THEME FOLDER :Create a folder modulesCreate another folder blockcms with the original file blockcms.tpl inside.Edit the blockcms.tpl according to my needsUpload everything to the serverIs it a safe operation ?Do I need to modify anything else or does the new mytheme/modules/blockcms/blockcms.tpl overrides alone ?Do I need to upload the all blockcms files or just the blockcms.tpl ?Thank you for your answer.I don't dare to do it without reconfirmation first :-S[EDIT]WELL IT IS SOLVED. I copied the all blockcms folder. And modified my performances. It works !Cheers, Link to comment Share on other sites More sharing options...
fjbengoat Posted March 22, 2011 Share Posted March 22, 2011 How did you do it for 1.4 final edition? I still cant delete it Link to comment Share on other sites More sharing options...
pasko Posted March 23, 2011 Share Posted March 23, 2011 In PrestaShop v1.4, the footer code has been moved to the bottom of modules/blockcms/blockcms.tpl.You should create themes//modules/blockcms/blockcms.tpl to override the file. I think I found the asnwer to my problem.Indeed, changing the original file in the PS main folder does not do anything.So if I understand well and to be sure that I am not gonna mess with the shop, I follow the procedure as :IN MY THEME FOLDER :Create a folder modulesCreate another folder blockcms with the original file blockcms.tpl inside.Edit the blockcms.tpl according to my needsUpload everything to the serverIs it a safe operation ?Do I need to modify anything else or does the new mytheme/modules/blockcms/blockcms.tpl overrides alone ?Do I need to upload the all blockcms files or just the blockcms.tpl ?Thank you for your answer.I don't dare to do it without reconfirmation first :-S[EDIT]WELL IT IS SOLVED. I copied the all blockcms folder. And modified my performances. It works !Cheers, Hi, when I do that all the footer with the links, disappears.Also impossible to do anything from the footer.tplWel, no way to do anything with the footer with prestashop 1.4.0.17 stable >Any suggestions? Thanks. Link to comment Share on other sites More sharing options...
Najjai Posted March 24, 2011 Share Posted March 24, 2011 HI. to remove powered by prestashop 1.4.0 17 copy this code to blockcms.tpl.and if powered by prestashop is stil in the footer conect to your ftp server tools/smarty/compile and empty the folder compile. www.polskie-minimarket.comgood luck, code-delete-powered-by.txt 1 Link to comment Share on other sites More sharing options...
vladyn Posted March 25, 2011 Share Posted March 25, 2011 Hello there I don't have such a file "blockvariouslinks.tpl" in the modules blockvariouslinks I have bg.php /localization file name with some declarations Link to comment Share on other sites More sharing options...
pasko Posted March 25, 2011 Share Posted March 25, 2011 In PrestaShop v1.4, the footer code has been moved to the bottom of modules/blockcms/blockcms.tpl.You should create themes//modules/blockcms/blockcms.tpl to override the file. I think I found the asnwer to my problem.Indeed, changing the original file in the PS main folder does not do anything.So if I understand well and to be sure that I am not gonna mess with the shop, I follow the procedure as :IN MY THEME FOLDER :Create a folder modulesCreate another folder blockcms with the original file blockcms.tpl inside.Edit the blockcms.tpl according to my needsUpload everything to the serverIs it a safe operation ?Do I need to modify anything else or does the new mytheme/modules/blockcms/blockcms.tpl overrides alone ?Do I need to upload the all blockcms files or just the blockcms.tpl ?Thank you for your answer.I don't dare to do it without reconfirmation first :-S[EDIT]WELL IT IS SOLVED. I copied the all blockcms folder. And modified my performances. It works !Cheers, Hi, when I do that all the footer with the links, disappears.Also impossible to do anything from the footer.tplWel, no way to do anything with the footer with prestashop 1.4.0.17 stable >Any suggestions? Thanks. This was the solution: conect to your ftp server tools/smarty/compile and empty the folder compileRegards. Link to comment Share on other sites More sharing options...
pasko Posted March 25, 2011 Share Posted March 25, 2011 Hello there I don't have such a file "blockvariouslinks.tpl" in the modules blockvariouslinks I have bg.php /localization file name with some declarations In Prestashop 1.4 it is "blockcms"Regards. Link to comment Share on other sites More sharing options...
vladyn Posted March 25, 2011 Share Posted March 25, 2011 Ahh thanks I've read it and customized already footer. Many thanks for the fast reply. I will probably have more Questions in this forum as I'm complete newbie in PS, but not in other platforms like OS commerce and Expression engine. Does anybody can give a quick tip if I want to add additional mark up like one div just before closing the main wrapper div, where can I find the template ? Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 Any suggestions? Thanks.This was the solution: conect to your ftp server tools/smarty/compile and empty the folder compileRegards.How do you do this with FileZilla or godaddy? Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 This was the solution: conect to your ftp server tools/smarty/compile and empty the folder compileRegards. How do you do this with FileZilla or godaddy? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 Hi,I use fireftp, but you can use filezilla Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 how do you do it on filezilla? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 I have downloaded filazilla, but its easier with fireftp.how do you upload your files to your server? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 http://www.thesitewizard.com/gettingstarted/howtoupload.shtml Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 I know how to upload to my ftp, I just want to see how touse tools/smarty/compile and empty the folder compile in filezilla where I can;t find it. Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 its in your webshop folder,,, example: polskie-minimarket.com/public_html/tools/smarty/compile Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 Ok I understand, there is a index.php file there, do I delete this ? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 delete all the files in folder compile Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 I did it but still not working. I downloaded the file you gave and used that as mine file and still no change. Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 the file i posted was a txt and not a tpl file did you upload the txt file our copy the code and pasted in your tpl file? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 I will send you now the tpl file Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 I pasted it to my tpl but I deleted it and used your code for the tpl. One thing in my theme folder in the module folder there is no blockcms folder. Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 modules/blockcms/blockcms.tpl and not in theme Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 I see that now, but do I just past it or do I delete the entire code and use urs ? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 wait, i wil try if you can paste the code Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 What you mean, do I replace the blockcms.tpl with your code that you posted on the forum or do I just add it and leave the original there? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 delete your code and past mine code Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 ok I have done that several times, I will do it again and see what happens. Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 also do I do the entire folder or just the file? Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 only blockcms.tpl and than delete the compile folder again Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 not the compile folder but the files in the compile folder... Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 I did what you said. When I go to the compile folder, there is nothing there since I deleted it the fist time.Also I know if this matters, I got this template from templatemonster.com and there link is also in the footer 1 Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 I have just past the code in another website check it. http://www.people4work.nl/shop/ Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 in the orignal file there is nothing about templatemoster in it. could that be overtaking the file. I have done what you said it still does not make sence to me. Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 what do you have in the footer after replaced the code? Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 sent you a pm with my site so you can see what I mean. Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 did you buy the template our a free template,, if its free I wil download the template and try it Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 it was free from them. Link to comment Share on other sites More sharing options...
Najjai Posted March 26, 2011 Share Posted March 26, 2011 mobilestore template? Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 I think so. Its been a while since I did it. Link to comment Share on other sites More sharing options...
cmo140 Posted March 26, 2011 Share Posted March 26, 2011 I am suppose to have smarty_v2 ? Link to comment Share on other sites More sharing options...
savvis Posted April 1, 2011 Share Posted April 1, 2011 In PrestaShop v1.4, the footer code has been moved to the bottom of modules/blockcms/blockcms.tpl.You should create themes//modules/blockcms/blockcms.tpl to override the file. I think I found the asnwer to my problem.Indeed, changing the original file in the PS main folder does not do anything.So if I understand well and to be sure that I am not gonna mess with the shop, I follow the procedure as :IN MY THEME FOLDER :Create a folder modulesCreate another folder blockcms with the original file blockcms.tpl inside.Edit the blockcms.tpl according to my needsUpload everything to the serverIs it a safe operation ?Do I need to modify anything else or does the new mytheme/modules/blockcms/blockcms.tpl overrides alone ?Do I need to upload the all blockcms files or just the blockcms.tpl ?Thank you for your answer.I don't dare to do it without reconfirmation first :-S[EDIT]WELL IT IS SOLVED. I copied the all blockcms folder. And modified my performances. It works !Cheers, Hi, when I do that all the footer with the links, disappears.Also impossible to do anything from the footer.tplWel, no way to do anything with the footer with prestashop 1.4.0.17 stable >Any suggestions? Thanks. This was the solution: conect to your ftp server tools/smarty/compile and empty the folder compileRegards. I have smarty_v2. Is it ok to delete all files in compile folder? (exept index.php i supose) Link to comment Share on other sites More sharing options...
LeoLeite Posted April 7, 2011 Share Posted April 7, 2011 friends did everything they said I was here: modules / blockcms / blockcms.tplI changed the name of prestashop, but when sending to FTP pair remains the same, providing the shop continues ...You know, tell me why? Link to comment Share on other sites More sharing options...
salko Posted May 3, 2011 Share Posted May 3, 2011 Is there any news about centering footer in PS 1.4? Link to comment Share on other sites More sharing options...
salko Posted May 6, 2011 Share Posted May 6, 2011 Here is a solution for centering footer in PS 1.4 (tested in 1.4.0.17) :You need to modify the first line in file /themes//css/modules/blockcms/blockcms.css :Before: #footer .block_various_links { list-style: none } After: #footer .block_various_links { list-style: none; text-align: center } Link to comment Share on other sites More sharing options...
keanu_reeves Posted May 7, 2011 Share Posted May 7, 2011 Version: 1.4.0.17Nothing written here was working for me. This code worked for me. in the file " modules/blockcms/blockcms.tpl " I Made a backup of modules/blockcms/blockcms.tpl Just removed the line with powered by.. deleted all the files from the " /tools/smarty/compile " and now Powered by Prestashop in the footer is no more. Hope this helps and i can further upgrade prestashop >{* * 2007-2011 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA * @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 1.4 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if $block == 1} <!-- Block CMS module --> {foreach from=$cms_titles item=cms_title} {if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if} {foreach from=$cms_title.categories item=cms_page} {if isset($cms_page.link)} {$cms_page.name|escape:html:'UTF-8'} {/if} {/foreach} {foreach from=$cms_title.cms item=cms_page} {if isset($cms_page.link)}{$cms_page.meta_title|escape:html:'UTF-8'}{/if} {/foreach} {if $cms_title.display_store}getPageLink('stores.php')}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}{/if} {/foreach} <!-- /Block CMS module --> {else} <!-- MODULE Block footer --> </pre> <ul> {if !$PS_CATALOG_MODE}getPageLink('prices-drop.php')}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}{/if} getPageLink('new-products.php')}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'} {if !$PS_CATALOG_MODE}getPageLink('best-sales.php')}" title="{l s='Top sellers' mod='blockcms'}">{l s='Top sellers' mod='blockcms'}{/if} {if $display_stores_footer}getPageLink('stores.php')}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}{/if} getPageLink('contact-form.php', true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'} {foreach from=$cmslinks item=cmslink} {if $cmslink.meta_title != ''} {$cmslink.meta_title|escape:'htmlall':'UTF-8'} {/if} {/foreach} </ul> <br> <!-- /MODULE Block footer --><br Link to comment Share on other sites More sharing options...
Victor Abedi-Lartey Posted July 6, 2011 Share Posted July 6, 2011 I have tried all the above but the link still exist Link to comment Share on other sites More sharing options...
Energym Posted July 21, 2011 Share Posted July 21, 2011 Eu am Prestashop 1.4.3.Am modificat fisierul: aa9d0b6248b26542b4b22a0ecf239df75e69ae7f.file.blockcms.tpl.php care l-am gasit in: public_html/shop.energym.ro/tools/smarty/compile unde shop.energym.ro este denumirea domeniului meu.Modificarea am facut-o aici:li class="last_item"><?php echo smartyTranslate(array('s'=>'Powered by','mod'=>'blockcms'),$_smarty_tpl);?>Energym™Vad ca a mers.Sper sa va fie de folos.Marian Link to comment Share on other sites More sharing options...
KMiDigital Posted July 29, 2011 Share Posted July 29, 2011 I have done the change as described in 1.4 to the themes//modules/blockcms/blockcms.tpl file but it doesn't show up in my live site, not sure why? Link to comment Share on other sites More sharing options...
Andy1 Posted August 2, 2011 Share Posted August 2, 2011 I have done the change as described in 1.4 to the themes//modules/blockcms/blockcms.tpl file but it doesn't show up in my live site, not sure why? Me too, although it worked okay in 1.4.3. I have tried to do the same in 1.4.4 and it doesn't seem to work. I have removed the line that includes Powered By PrestaShop, but it's still on my site. Any ideas? Many Thanks Link to comment Share on other sites More sharing options...
Andy1 Posted August 2, 2011 Share Posted August 2, 2011 I now notice you don't need to edit this in the tpl file. if you go to 'Module' 'CMS Block' and 'Configure' you can deselect the Powered By PrestaShop footer. But editing the tpl file to remove 'our store' and 'specials' from the footer doesn't seem to work now. Link to comment Share on other sites More sharing options...
sdrco Posted August 5, 2011 Share Posted August 5, 2011 Thanks... Link to comment Share on other sites More sharing options...
Swedutch Posted September 13, 2011 Share Posted September 13, 2011 I have a template for PS 1.3 running at PS 1.4. Do I have to delete the blockvariouslink in the PS folder and my Themes folder and adjust the CMS.tpl? Whatever I try I cannot seem to get rid of the Designed by Prestashop link as well as some other. Annoying it is. If someone could help me that would be great! I change in the css the text align and that worked! Link to comment Share on other sites More sharing options...
kelvinnes Posted October 2, 2011 Share Posted October 2, 2011 I now notice you don't need to edit this in the tpl file. if you go to 'Module' 'CMS Block' and 'Configure' you can deselect the Powered By PrestaShop footer. But editing the tpl file to remove 'our store' and 'specials' from the footer doesn't seem to work now. Guys, exactly. If you really had changed / modified all the codes from blockcms.tpl, OR even you delete this file. The line is still exist! I have faced this same problem! Now my problem is solved! So guys, please make attention two variations here:- 1. If you using the default template by PS, to modify the blockcms.tpl by changing the word "powered by PS" , apparently, is work! 2. If your template is used from other third party companies, you gonna be checked some of their provided modules. The blockcms.tpl has been override by other modules, means that they put this line "Powered by xxxx" and store at different module. That's why you can't even see the effects you keep changing the blockcms.tpl!! Then how should you know where this line store? Easy, Just check the modules name (module files you used from the third parties), their name maybe is folder "footer" or "footerlink" If you still cannot find them out, go to computer files search on the modules files, then you will get the .tpl easily. It was spent about 2 hours to solve this problem for my clients!, so here is my sharing for you guys, hope my info can help you! 1 Link to comment Share on other sites More sharing options...
pradyut Posted October 16, 2011 Share Posted October 16, 2011 Just edit your global.css file and add the center code as seen below /* Footer */ #footer { border-top: 1px solid #000000; padding-top: 1em; text-align:center; clear: both; Link to comment Share on other sites More sharing options...
ibe Posted October 20, 2011 Share Posted October 20, 2011 During my searches for a solution i came across a blog that suggested to do it this way and it worked for me: go to: modules/blockcms/blockcms.tpl In this file go to: <!-- MODULE Block footer --> add this: <center> before the line <ul class="block_various_links" go to the end: <!-- /MODULE Block footer --> add this: </center> just before it! Good bless this guy. 1 Link to comment Share on other sites More sharing options...
ROB001 Posted October 22, 2011 Share Posted October 22, 2011 I have an issue with the footer. I was able to remove all unwanted links but one. I would like to remove the "home" link from the footer of my webpage. Anyone have any idea how to go about this or do I need the "cms category "home"" to display the rest of the cms links? Thanks, Link to comment Share on other sites More sharing options...
grolarja Posted October 23, 2011 Share Posted October 23, 2011 This was the solution: conect to your ftp server tools/smarty/compile and empty the folder compile Regards. And how does this work if your still working on your localhost? Link to comment Share on other sites More sharing options...
norseman Posted November 1, 2011 Share Posted November 1, 2011 During my searches for a solution i came across a blog that suggested to do it this way and it worked for me: go to: modules/blockcms/blockcms.tpl In this file go to: <!-- MODULE Block footer --> add this: <center> before the line <ul class="block_various_links" go to the end: <!-- /MODULE Block footer --> add this: </center> just before it! Good bless this guy. <center> has been depreciated in HTML, careful of doing this, use proper css and div if required. Link to comment Share on other sites More sharing options...
leetvape Posted November 23, 2011 Share Posted November 23, 2011 Just tried this in 1.5 and it didn't work. What's up with .tpl's not working the same way in the latest version? Link to comment Share on other sites More sharing options...
SpoiledK Posted November 29, 2011 Share Posted November 29, 2011 In version 1.4.6.2... add the following line to your "themes\yourtheme\css\modules\blockcms\blockcms.css"... text-align: center; should look like this when completed: #footer .block_various_links { text-align: center; list-style: none } Hope this helps... Link to comment Share on other sites More sharing options...
usagirl Posted December 4, 2011 Share Posted December 4, 2011 Trying to remove "povered by PrestaShop" from email templates, removed it from all text files in the folder named "mails" - no success. Any suggestion? Link to comment Share on other sites More sharing options...
MyNawtyToys Posted December 4, 2011 Share Posted December 4, 2011 Go to BO, Tools, Translations, under modify translations, select email template translations, select the language you want and that will put you into the email templates, edit the ones you want to remove "powered by Prestashop" and then click on "Update" at the bottom Trying to remove "povered by PrestaShop" from email templates, removed it from all text files in the folder named "mails" - no success. Any suggestion? Link to comment Share on other sites More sharing options...
usagirl Posted December 5, 2011 Share Posted December 5, 2011 THank you MyNawtyToys! You are not Newbie, you are Probie! Link to comment Share on other sites More sharing options...
MyNawtyToys Posted December 5, 2011 Share Posted December 5, 2011 Your welcome, but I cant take credit for the answer. I found the answer about a 6 months ago looking around on the forums for the same question. THank you MyNawtyToys! You are not Newbie, you are Probie! Link to comment Share on other sites More sharing options...
kadsyl2011 Posted December 29, 2011 Share Posted December 29, 2011 Hi Guys, followed above instructions and changed modules/blockcms.tpl but there still is no change. I wanted to enter my details and remove powered by. Please help me Link to comment Share on other sites More sharing options...
kadsyl2011 Posted December 29, 2011 Share Posted December 29, 2011 Can Some one help me please. I have got the same problem and have tried changing or removing powered by from prestashop 1.4.6.2 but dont seem to have any luck. Changed information but powered by is still there. What Do I do: www.fouraysconcepts.com Link to comment Share on other sites More sharing options...
Carl Favre Posted December 29, 2011 Share Posted December 29, 2011 Hi kadsyl2011, Did you clear the cache and force the compilation in "preferences\performances" in your back-office? 1 Link to comment Share on other sites More sharing options...
archproject Posted July 6, 2012 Share Posted July 6, 2012 Hi kadsyl2011, Did you clear the cache and force the compilation in "preferences\performances" in your back-office? Yeah you need to clear cache and force compile before you can see changes to your site. I was going around like a headless chicken trying to figure this out. hahaha Link to comment Share on other sites More sharing options...
Krofek Posted July 30, 2012 Share Posted July 30, 2012 I have PrestaShop 1.4.8.2 and I realy can not change Powered by PrestaShop. I want to add link to my host webpage. I add <li class="item"><a href="http://sitename.com">Name</a></li> at the end of the blockcms.tpl file. Link to comment Share on other sites More sharing options...
cutecat Posted March 7, 2013 Share Posted March 7, 2013 I still can't remove the powered by prestashop in the email reply. Link to comment Share on other sites More sharing options...
tdr170 Posted March 7, 2013 Share Posted March 7, 2013 (edited) For emails you need to remove the powered by from both html and text files for your laguage in the mails/yourlanguage. It is the last line in the files change as below. for html files change this: (text in red removed) <td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: {color}; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered by <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a></td>'>http://www.prestashop.com/">PrestaShop™</a></td> to this: <td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: {color}; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> for text files change this: (text in red removed) {shop_url} powered by PrestaShop™ to this: {shop_url} Here is a faster way to do all files at once: Remove “powered with PrestaShop™” from emails Well this is not so easy to accomplish but I will tell you the easy way. All emails are saved in mails directory it is located in Prestashop root directory: You should see separate directory for every language in mails direcotry. Almost every file contains the Powered by Prestashop line (look near bottom of the file): In html files: <a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShopâ„¢</a> or in txt files: {shop_url} powered by PrestaShop™ OK first of all download whole mails directory to your computer. Now it is possible to check every file and change lines. In html files we need to delete or change this part: powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShopâ„¢</a> In txt files we need to delete or change this part: powered by PrestaShop™ This task is easy but we have a huge amount of files, it will be a long and tedious task to change one file after another. There is an easier way. OK let’s say we downloaded the mails directory to our C:\ drive. Now you have to download Notepad ++ and install it in your computer, Its a free download. Install Notepad ++ and start the program. Go to Search->Find In Files: copy the powered by part from above and paste it in the Find what text box, delete anything in the replace with text box and change the Directory to the mails directory ie (c:\mails\your language) and click replace in files Next: Now copy the powered by PrestaShop™ from above and paste that in the find what - delete anything in the replace with text box and change the Directory to the mails directory ie (c:\mails\your language) and click replace in files, that it your done. Edited March 7, 2013 by tdr170 (see edit history) Link to comment Share on other sites More sharing options...
cutecat Posted March 7, 2013 Share Posted March 7, 2013 thanks a lot mate got it working!!! Cheers Link to comment Share on other sites More sharing options...
AsaVita Posted June 28, 2013 Share Posted June 28, 2013 Hi guys. I have the newest version 1.5.4 and I was almost whole day trying to remove this Powered by Presta footer. I dont have blockvariouslinks module and it is not in the cms block. Any suggestions? Link to comment Share on other sites More sharing options...
Paulito Posted June 28, 2013 Share Posted June 28, 2013 Good morning do you mean you do not have the check box to enable/disable "powered by prestashop" in block cms Paul Link to comment Share on other sites More sharing options...
AsaVita Posted June 28, 2013 Share Posted June 28, 2013 Good morning do you mean you do not have the check box to enable/disable "powered by prestashop" in block cms Paul I wasn't very correct- yes I have this in my cms block and and turn it off, but I downloaded one free theme and there is something called footer copyright at the bottom of the page and I deleted it in the global.css file but only the box disappeared, not the writings (copyright, all rights reserved and others). if u cant understand me I can send in here screenshot to show you exactly what I mean.Thank you! Link to comment Share on other sites More sharing options...
vekia Posted June 28, 2013 Share Posted June 28, 2013 it is possible to check your website somewhere? if so, please paste the url, if not - prepare a screenshot 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