snowkiid Posted May 20, 2012 Share Posted May 20, 2012 okay, so im very new to prestashop but so far i've been getting the hang of it ... except for the bottom of my page. where it says "information" and "my account" I would like to edit these words and the links below them. but I can't find out how to do that. there are no modules that i see that can help me edit this. I don't know what to do? can someone please tell me how i'm able to edit this? thanks. 1 Link to comment Share on other sites More sharing options...
Rhapsody Posted May 20, 2012 Share Posted May 20, 2012 Back Office, Tools, Translations, Translations of Installed Modules - then click the flag for the language you want to edit. Link to comment Share on other sites More sharing options...
ronlin-9 Posted May 28, 2012 Share Posted May 28, 2012 I have a similar question. I want to delete some of the links. For example "specials" "best-seller" and "new products." In the Back Office > Tools > CMS I only find Terms and Conditions, secure payment etc, but not the ones I mentioned above. Same goes for "My Account." Cheers Link to comment Share on other sites More sharing options...
ciptanegara Posted May 29, 2012 Share Posted May 29, 2012 I have a similar question. I want to delete some of the links. For example "specials" "best-seller" and "new products." In the Back Office > Tools > CMS I only find Terms and Conditions, secure payment etc, but not the ones I mentioned above. Same goes for "My Account." Cheers In module/blockcms/blockcms.tpl find this line : <!-- MODULE Block footer --> <ul class="block_various_links" id="block_various_links_footer"> {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop.php')}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if} <li class="{if $PS_CATALOG_MODE}first_{/if}item"><a href="{$link->getPageLink('new-products.php')}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'}</a></li> {if !$PS_CATALOG_MODE}<li class="item"><a href="{$link->getPageLink('best-sales.php')}" title="{l s='Top sellers' mod='blockcms'}">{l s='Top sellers' mod='blockcms'}</a></li>{/if} {if $display_stores_footer}<li class="item"><a href="{$link->getPageLink('stores.php')}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a></li>{/if} <li class="item"><a href="{$link->getPageLink('contact-form.php', true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li> {foreach from=$cmslinks item=cmslink} {if $cmslink.meta_title != ''} <li class="item"><a href="{$cmslink.link|addslashes}" title="{$cmslink.meta_title|escape:'htmlall':'UTF-8'}">{$cmslink.meta_title|escape:'htmlall':'UTF-8'}</a></li> {/if} {/foreach} {if $display_poweredby}<li class="last_item">{l s='Powered by' mod='blockcms'} <a href="http://www.prestashop.com">PrestaShop</a>™</li>{/if} </ul> <!-- /MODULE Block footer --> U may modified / delete this line. If you delete all the line, the footer will not be shown in FO. If you want just to delete few links, just delete the appropriate line. Dont forget to Force Compile after change the blockcms.tpl Peluang Bisnis&Franchise|Jual Sepatu-Sandal Kulit, Murah&Bagus 3 Link to comment Share on other sites More sharing options...
ronlin-9 Posted May 31, 2012 Share Posted May 31, 2012 Thanks ciptanegara, Had a look at it myself right after I wrote the post and came to the same conclusion. Cheers. Link to comment Share on other sites More sharing options...
generalexperts Posted July 21, 2013 Share Posted July 21, 2013 (edited) I am using Prestashop 1.5. I am trying to change information on the footer. I would like to have one link that says "My Account." When a user clicks on that link it will give them the options to select My orders, My credit slips, My addresses, My personal information. When a user clicks on that currently it goes to that information, but I don't need them all displayed in their own column. I also don't want it to be the column header of "MY ACCOUNT." I want it to be under a different column. INFORMATION My Account Legal Notice Terms and Conditions Secure Payment Shipping & Returns ANOTHER INFORMATION HEADER Contact Us About Us Delivery Follow Us Facebook Twitter RSS Contact Info ..... .... .... Currently, I have tried the solution above of removing lines in the .tpl file. That doesn't work for removing "Specials" "New Products" "Top Sellers." I do not need these. How do I remove these from my footer?? Any help is much appreciated! Thank you! Edited July 21, 2013 by generalexperts (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted July 21, 2013 Share Posted July 21, 2013 you mean that you want to redirect user to the my account page? and you want only this ? in this case edit the blockmyaccountfooter module template file (.tpl) you've got there links: <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> {if $returnAllowed}<li><a href="{$link->getPageLink('order-follow', true)}" title="{l s='List of my merchandise returns' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My merchandise returns' mod='blockmyaccountfooter'}</a></li>{/if} <li><a href="{$link->getPageLink('order-slip', true)}" title="{l s='List of my credit slips' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My credit slips' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='List of my addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> just remove unwanted urls Link to comment Share on other sites More sharing options...
Blanka Posted July 22, 2013 Share Posted July 22, 2013 Hi. I have a similar question about footer module. I am trying to update links and add my personal informations in footer, but I don`t know how. How can I add my own links and pages here? I tryed to find this module : blockmyaccountfooter module template file (.tpl) but I didn`t.C Can you please please please help me?I have a Prestashopic Clothing premium theme (http://www.prestashopic.com/eshop/11-prestashopic-clothing-premium-theme.html), and I write to prestashopic team about 1000x and no one answered me!!!! Please please help me!!!Thank you!!!Regards, Blanka International Shipping Shipping & Returns International Help Secure Shopping Quality & Value Returns & Exchanges Ordering & Payment Shipping Information Customer Service Privacy Pledge Catalog Request Design Services Store Locations Contact us Site map Link to comment Share on other sites More sharing options...
vekia Posted July 23, 2013 Share Posted July 23, 2013 hello is there any chance to test your website? It's under maintenance mode Link to comment Share on other sites More sharing options...
vekia Posted July 23, 2013 Share Posted July 23, 2013 I also don't have any idea regarding this but, I would like to advice that you search in the help menu for that or research on internet for that. You will surely get the information you want. moderator action - removed url ?? what you mean by that Link to comment Share on other sites More sharing options...
Blanka Posted July 23, 2013 Share Posted July 23, 2013 (edited) Hi Vekia! Thank you for fast replay I opened my website: www.lovelyshop.si THANK YOU! Regards, Blanka Edited July 23, 2013 by Blanka (see edit history) Link to comment Share on other sites More sharing options...
Rhapsody Posted July 23, 2013 Share Posted July 23, 2013 ?? what you mean by that I looked at the other posts by alanwood. I think this is a spam account as his other posts make no sense either. Link to comment Share on other sites More sharing options...
vekia Posted July 23, 2013 Share Posted July 23, 2013 Hi Vekia! Thank you for fast replay I opened my website: www.lovelyshop.si THANK YOU! Regards, Blanka hello Blanka thanks for the URL i checked your website, it looks like it is: 1) external module for footer 2) footer.tpl file modification in this case, can you share more information about modules attached to the Footer section in the moduels > positions tab in your back office? regarding to the second idea, you should check footer.tpl file located in your theme directory, maybe the links are hardcoded there Link to comment Share on other sites More sharing options...
vekia Posted July 23, 2013 Share Posted July 23, 2013 I looked at the other posts by alanwood. I think this is a spam account as his other posts make no sense either. thanks for information, i marked his posts as a "SPAM" regards Link to comment Share on other sites More sharing options...
Blanka Posted July 23, 2013 Share Posted July 23, 2013 Jeeeeej, I found where can I manage the links. Wohooo! )) But hmm, how can now I add pages to this links? You know, I have to write somewhere the shipping information & termes of use and other stuff... can you please tell me how can i do this? Thank youuuu! )) Link to comment Share on other sites More sharing options...
vekia Posted July 23, 2013 Share Posted July 23, 2013 can you show what code you've got ? Link to comment Share on other sites More sharing options...
Blanka Posted July 23, 2013 Share Posted July 23, 2013 <link rel="stylesheet" type="text/css" href="{$module_dir}css/blockfooter.css" media="screen"/> <!-- Block footer logo module --> <div class="inner"> <div class="footerlinks"> <div class="footer_left"> <ul class="network"> <li class="img1"><a href="#" title="secure"><img src="{$module_dir}img/secure.png" alt="secure" /></a></li> </ul> </div> <div class="footer_block"> <li><a href="{$base_url}#">{l s='Naročila' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=1">{l s='Dostava' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Dostava v tujino' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Nagradne igre & boni' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Splosni pogoji' mod='blockfooter'}</a></li> </div> <div class="footer_block"> <li><a href="{$base_url}#">{l s='Returns & Exchanges' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Ordering & Payment' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Shipping Information' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Customer Service' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Privacy Pledge' mod='blockfooter'}</a></li> </div> <div class="footer_block"> <li><a href="{$base_url}cms.php?id_cms=3">{l s='Catalog Request' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=3">{l s='Design Services' mod='blockfooter'}</a></li> <li><a href="{$base_url}stores.php">{l s='Store Locations' mod='blockfooter'}</a></li> <li><a href="{$base_url}contact-form.php">{l s='Contact us' mod='blockfooter'}</a></li> <li><a href="{$base_url}sitemap.php">{l s='Site map' mod='blockfooter'}</a></li> </div> </div> <div class="footer_info"> <div class="footer_right_news"> <ul class="newsletterbotm"> <!-- Block newsletter --> <li> <form action="{$base_dir}" method="post"> <input class="bar" type="text" name="email" size="18" value="{if $value}{$value}{else}{l s='your e-mail' mod='blockfooter'}{/if}" onfocus="javascript:if(this.value=='{l s='your e-mail' mod='blockfooter'}')this.value='';" onblur="javascript:if(this.value=='')this.value='{l s='your e-mail' mod='blockfooter'}';" /> <select name="action" class="newsletter"> <option value="0"{if $action == 0} selected="selected"{/if}>{l s='Subscribe' mod='blockfooter'}</option> <option value="1"{if $action == 1} selected="selected"{/if}>{l s='Unsubscribe' mod='blockfooter'}</option> </select> <input type="submit" value="{l s='Ok' mod='blockfooter'}" class="button_small" name="submitNewsletter" /> </form> {if $msg} <p class="news {if $nw_error}warning_inline{else}success_inline{/if}">{$msg}</p> {/if} </li> <!-- Block newsletter --> </ul> </div> <div class="footer_right"> <p> {l s='Phone:' mod='blockfooter'} {l s='+90 554 773 70 70' mod='blockfooter'}</p> <p> {l s='Address:' mod='blockfooter'} {l s='1260 W. Madison St. Chicago, IL 60607' mod='blockfooter'}</p> <p> ©{l s=' All Content Copyright 1999-2011 Prestashopic.com.' mod='blockfooter'}</p> </div> <ul class="security"> </ul> </div> <div class="clear"></div> </div> <!-- /Block footer logo module --> Link to comment Share on other sites More sharing options...
Blanka Posted July 23, 2013 Share Posted July 23, 2013 (edited) Now i change the name of links and something is not right. <div class="footer_block"> <li><a href="{$base_url}#">{l s='Naročila' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=1">{l s='Dostava' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Dostava v tujino' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Nagradne igre & boni' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Splosni pogoji' mod='blockfooter'}</a></li> </div> This red links are not shown in website wwww.lovelyshop.si Edited July 23, 2013 by Blanka (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted July 23, 2013 Share Posted July 23, 2013 in this case you have to run shop under the force compilation mode when you're workin on your theme in .tpl files it's necessary to turn force compile on. don't forget to turn it off when you're done. what links you want to add now? for what pages? Link to comment Share on other sites More sharing options...
Blanka Posted July 23, 2013 Share Posted July 23, 2013 [/img] Uploaded with ImageShack.us I have this Prestashop back office and I can`t find force compilation mode. I am realy dummy for this stuff Can you help me, please? Thank you. Blanka Link to comment Share on other sites More sharing options...
vekia Posted July 23, 2013 Share Posted July 23, 2013 to turn force compilation on open preferences > performance tab: Link to comment Share on other sites More sharing options...
Blanka Posted July 23, 2013 Share Posted July 23, 2013 Ok, I see now all my links ) Thank you! just a one question...How can I add/create text pages to those links? Like is in the bottom of the page "NAŠA MALENKOST", when you click on the link, you open the page with text about shipping, company, etc,... ? Thank you Link to comment Share on other sites More sharing options...
Blanka Posted July 24, 2013 Share Posted July 24, 2013 Please, help me Link to comment Share on other sites More sharing options...
benjamin utterback Posted July 24, 2013 Share Posted July 24, 2013 At which part of the page are you talking about? You can create custom CMS pages in Preferences>CMS and then go to Modules>CMS Block to select with ones you have to display. Link to comment Share on other sites More sharing options...
Blanka Posted July 24, 2013 Share Posted July 24, 2013 (edited) I would like to add text to this links: Uploaded with ImageShack.us I think they are not in CMS, but in BlockFooter module, which I can`t manage: Uploaded with ImageShack.us I something change in my code, but I think is not ok )Blockfooter module) My Code (manageby me): <link rel="stylesheet" type="text/css" href="{$module_dir}css/blockfooter.css" media="screen"/> <!-- Block footer logo module --> <div class="inner"> <div class="footerlinks"> <div class="footer_left"> <ul class="network"> <li class="img1"><a href="#" title="secure"><img src="{$module_dir}img/secure.png" alt="secure" /></a></li> </ul> </div> <div class="footer_block"> <li><a href="{$base_url}cms.php?id_cms=6">{l s='Dostava' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=5">{l s='Dostava' mod='blockfooter'}</a></li> </div> <div class="footer_block"> <li><a href="{$base_url}#">{l s='Nagradne igre ' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Darilni boni' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Dostava v tujino' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Piškotki' mod='blockfooter'}</a></li> </div> <div class="footer_block"> <li><a href="{$base_url}cms.php?id_cms=1">{l s='Po narocilu' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=2">{l s='Veleprodaja' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=3">{l s='Splosni pogoji' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=4">{l s='Prijatelji' mod='blockfooter'}</a></li> </div> </div> <div class="footer_info"> <div class="footer_right_news"> <ul class="newsletterbotm"> <!-- Block newsletter --> <li> <form action="{$base_dir}" method="post"> <input class="bar" type="text" name="email" size="18" value="{if $value}{$value}{else}{l s='your e-mail' mod='blockfooter'}{/if}" onfocus="javascript:if(this.value=='{l s='your e-mail' mod='blockfooter'}')this.value='';" onblur="javascript:if(this.value=='')this.value='{l s='your e-mail' mod='blockfooter'}';" /> <select name="action" class="newsletter"> <option value="0"{if $action == 0} selected="selected"{/if}>{l s='Subscribe' mod='blockfooter'}</option> <option value="1"{if $action == 1} selected="selected"{/if}>{l s='Unsubscribe' mod='blockfooter'}</option> </select> <input type="submit" value="{l s='Ok' mod='blockfooter'}" class="button_small" name="submitNewsletter" /> </form> {if $msg} <p class="news {if $nw_error}warning_inline{else}success_inline{/if}">{$msg}</p> {/if} </li> <!-- Block newsletter --> </ul> </div> <div class="footer_right"> <p> {l s='Phone:' mod='blockfooter'} {l s='+90 554 773 70 70' mod='blockfooter'}</p> <p> {l s='Address:' mod='blockfooter'} {l s='1260 W. Madison St. Chicago, IL 60607' mod='blockfooter'}</p> <p> ©{l s=' All Content Copyright 1999-2011 Prestashopic.com.' mod='blockfooter'}</p> </div> <ul class="security"> </ul> </div> <div class="clear"></div> </div> <!-- /Block footer logo module --> Theme code: <link rel="stylesheet" type="text/css" href="{$module_dir}css/blockfooter.css" media="screen"/> <!-- Block footer logo module --> <div class="inner"> <div class="footerlinks"> <div class="footer_left"> <ul class="network"> <li class="img1"><a href="#" title="secure"><img src="{$module_dir}img/secure.png" alt="secure" /></a></li> </ul> </div> <div class="footer_block"> <li><a href="{$base_url}#">{l s='Naročila' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=1">{l s='Dostava' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Dostava v tujino' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Nagradne igre & boni' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Splosni pogoji' mod='blockfooter'}</a></li> </div> <div class="footer_block"> <li><a href="{$base_url}#">{l s='Returns & Exchanges' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Ordering & Payment' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Shipping Information' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Customer Service' mod='blockfooter'}</a></li> <li><a href="{$base_url}#">{l s='Privacy Pledge' mod='blockfooter'}</a></li> </div> <div class="footer_block"> <li><a href="{$base_url}cms.php?id_cms=3">{l s='Catalog Request' mod='blockfooter'}</a></li> <li><a href="{$base_url}cms.php?id_cms=3">{l s='Design Services' mod='blockfooter'}</a></li> <li><a href="{$base_url}stores.php">{l s='Store Locations' mod='blockfooter'}</a></li> <li><a href="{$base_url}contact-form.php">{l s='Contact us' mod='blockfooter'}</a></li> <li><a href="{$base_url}sitemap.php">{l s='Site map' mod='blockfooter'}</a></li> </div> </div> <div class="footer_info"> <div class="footer_right_news"> <ul class="newsletterbotm"> <!-- Block newsletter --> <li> <form action="{$base_dir}" method="post"> <input class="bar" type="text" name="email" size="18" value="{if $value}{$value}{else}{l s='your e-mail' mod='blockfooter'}{/if}" onfocus="javascript:if(this.value=='{l s='your e-mail' mod='blockfooter'}')this.value='';" onblur="javascript:if(this.value=='')this.value='{l s='your e-mail' mod='blockfooter'}';" /> <select name="action" class="newsletter"> <option value="0"{if $action == 0} selected="selected"{/if}>{l s='Subscribe' mod='blockfooter'}</option> <option value="1"{if $action == 1} selected="selected"{/if}>{l s='Unsubscribe' mod='blockfooter'}</option> </select> <input type="submit" value="{l s='Ok' mod='blockfooter'}" class="button_small" name="submitNewsletter" /> </form> {if $msg} <p class="news {if $nw_error}warning_inline{else}success_inline{/if}">{$msg}</p> {/if} </li> <!-- Block newsletter --> </ul> </div> <div class="footer_right"> <p> {l s='Phone:' mod='blockfooter'} {l s='+90 554 773 70 70' mod='blockfooter'}</p> <p> {l s='Address:' mod='blockfooter'} {l s='1260 W. Madison St. Chicago, IL 60607' mod='blockfooter'}</p> <p> ©{l s=' All Content Copyright 1999-2011 Prestashopic.com.' mod='blockfooter'}</p> </div> <ul class="security"> </ul> </div> <div class="clear"></div> </div> <!-- /Block footer logo module --> Edited July 24, 2013 by Blanka (see edit history) Link to comment Share on other sites More sharing options...
Blanka Posted July 24, 2013 Share Posted July 24, 2013 So I would like add page to that links , like legal notice, termes of use, shipping,.... Now, there are links but no page. Link to comment Share on other sites More sharing options...
vekia Posted July 24, 2013 Share Posted July 24, 2013 so just paste the urls to the <a href=""> tag example: <a href="http://prestashop.com">{l s='PrestaShop is pretty cool'}</a> Link to comment Share on other sites More sharing options...
Blanka Posted July 24, 2013 Share Posted July 24, 2013 JEEEEEEEEEEEJ, IT`S WORKING NOW!!!!!!! :lol: THANK YOU!!!! Blanka Link to comment Share on other sites More sharing options...
vekia Posted July 24, 2013 Share Posted July 24, 2013 im really glad that it works for you as you expect right now anyway, sorry for late response Link to comment Share on other sites More sharing options...
Blanka Posted August 18, 2013 Share Posted August 18, 2013 (edited) Hi. I need your help one more time. On the product page, I would like to settle price, quantity and add to cart button all in one row as you can see in the picture, but I don't know where in the code can I fix this. Can you please tell me which file of code do I have to fix. (http://lovelyshop.si/) [/img] Uploaded with ImageShack.us I would like to have product details (add to cart, price, product name) like on the picture which I have attached here: [/img] Uploaded with ImageShack.us Thank you!!!! Edited August 19, 2013 by Blanka (see edit history) Link to comment Share on other sites More sharing options...
Adam Akhirat Posted February 16, 2014 Share Posted February 16, 2014 in this case you have to run shop under the force compilation mode when you're workin on your theme in .tpl files it's necessary to turn force compile on. don't forget to turn it off when you're done. what links you want to add now? for what pages? Hye Vekia, how to turn on and off the "force compile" ? i read here,and follow, http://mypresta.eu/en/art/basic-tutorials/how-to-turn-on-force-compilation-in-prestashop.html but still doesnt give any effect after i change the tpl file.. thank you Link to comment Share on other sites More sharing options...
vekia Posted February 16, 2014 Share Posted February 16, 2014 well, if you don't see changes even after you turn on force compile and clear shop cache, it mean that you ... probably changed wrong file, it's possible. if file you changed also exists in your theme directory (themes/YOUR_THEME/modules/) you have to edit this one Link to comment Share on other sites More sharing options...
Adam Akhirat Posted February 16, 2014 Share Posted February 16, 2014 well, if you don't see changes even after you turn on force compile and clear shop cache, it mean that you ... probably changed wrong file, it's possible. if file you changed also exists in your theme directory (themes/YOUR_THEME/modules/) you have to edit this one Vekia, i i found it also in the themes/default/modules, but when i edit it, it give me..................... BLANK WEBSITE T_T what should i do man??? T_T Link to comment Share on other sites More sharing options...
vekia Posted February 16, 2014 Share Posted February 16, 2014 blank page means that you changed something wrong like missed {/if} code etc. can you show conents of file that you modified, please? i will check it. Link to comment Share on other sites More sharing options...
Adam Akhirat Posted February 16, 2014 Share Posted February 16, 2014 blank page means that you changed something wrong like missed {/if} code etc. can you show conents of file that you modified, please? i will check it. its going back to normal man.. thanks to you coz i have make a back up, and put the original file back, i hope i put the right place for all the coding ! hahaha btw, i screenshot but i cant attach it here..why??? i want to ask, if you dont mind, please open my website : www.loverfragrances.com i "inspect element" of the bottom of it for the link SPECIAL & BEST SELLERS.. i want to remove it.. from "inspect element", how to get their "address" in cpanel"? is it possible? hehe thank you man.. and which file should i edit to DELETE both of it? thank you man =D hope it clear =D Link to comment Share on other sites More sharing options...
vekia Posted February 16, 2014 Share Posted February 16, 2014 btw, i screenshot but i cant attach it here..why??? how you're trying to attach it? i "inspect element" of the bottom of it for the link SPECIAL & BEST SELLERS.. i want to remove it.. from "inspect element", how to get their "address" in cpanel"? is it possible? hehe it's not possible to get address of file with "inspect" tool, unfortunately. go to /modules/blockcms/blockcms.tpl there is a code: {else} <!-- MODULE Block footer --> <div class="block_various_links" id="block_various_links_footer"> <h4 class="title_block">{l s='Information' mod='blockcms'}</h4> <ul> {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')|escape:'html'}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if} <li class="{if $PS_CATALOG_MODE}first_{/if}item"><a href="{$link->getPageLink('new-products')|escape:'html'}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'}</a></li> {if !$PS_CATALOG_MODE}<li class="item"><a href="{$link->getPageLink('best-sales')|escape:'html'}" title="{l s='Best sellers' mod='blockcms'}">{l s='Best sellers' mod='blockcms'}</a></li>{/if} {if $display_stores_footer}<li class="item"><a href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a></li>{/if} <li class="item"><a href="{$link->getPageLink($contact_url, true)|escape:'html'}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li> {foreach from=$cmslinks item=cmslink} {if $cmslink.meta_title != ''} <li class="item"><a href="{$cmslink.link|addslashes|escape:'html'}" title="{$cmslink.meta_title|escape:'htmlall':'UTF-8'}">{$cmslink.meta_title|escape:'htmlall':'UTF-8'}</a></li> {/if} {/foreach} <li><a href="{$link->getPageLink('sitemap')|escape:'html'}" title="{l s='Sitemap' mod='blockcms'}">{l s='Sitemap' mod='blockcms'}</a></li> {if $display_poweredby}<li class="last_item">{l s='Powered by' mod='blockcms'} <a class="_blank" href="http://www.prestashop.com">PrestaShop</a>™</li>{/if} </ul> {$footer_text} </div> <!-- /MODULE Block footer --> {/if} remove lines: {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')|escape:'html'}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if} and: {if !$PS_CATALOG_MODE}<li class="item"><a href="{$link->getPageLink('best-sales')|escape:'html'}" title="{l s='Best sellers' mod='blockcms'}">{l s='Best sellers' mod='blockcms'}</a></li>{/if} Link to comment Share on other sites More sharing options...
Adam Akhirat Posted February 16, 2014 Share Posted February 16, 2014 how you're trying to attach it? it's not possible to get address of file with "inspect" tool, unfortunately. go to /modules/blockcms/blockcms.tpl there is a code: {else} <!-- MODULE Block footer --> <div class="block_various_links" id="block_various_links_footer"> <h4 class="title_block">{l s='Information' mod='blockcms'}</h4> <ul> {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')|escape:'html'}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if} <li class="{if $PS_CATALOG_MODE}first_{/if}item"><a href="{$link->getPageLink('new-products')|escape:'html'}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'}</a></li> {if !$PS_CATALOG_MODE}<li class="item"><a href="{$link->getPageLink('best-sales')|escape:'html'}" title="{l s='Best sellers' mod='blockcms'}">{l s='Best sellers' mod='blockcms'}</a></li>{/if} {if $display_stores_footer}<li class="item"><a href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a></li>{/if} <li class="item"><a href="{$link->getPageLink($contact_url, true)|escape:'html'}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li> {foreach from=$cmslinks item=cmslink} {if $cmslink.meta_title != ''} <li class="item"><a href="{$cmslink.link|addslashes|escape:'html'}" title="{$cmslink.meta_title|escape:'htmlall':'UTF-8'}">{$cmslink.meta_title|escape:'htmlall':'UTF-8'}</a></li> {/if} {/foreach} <li><a href="{$link->getPageLink('sitemap')|escape:'html'}" title="{l s='Sitemap' mod='blockcms'}">{l s='Sitemap' mod='blockcms'}</a></li> {if $display_poweredby}<li class="last_item">{l s='Powered by' mod='blockcms'} <a class="_blank" href="http://www.prestashop.com">PrestaShop</a>™</li>{/if} </ul> {$footer_text} </div> <!-- /MODULE Block footer --> {/if} remove lines: {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')|escape:'html'}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if} and: {if !$PS_CATALOG_MODE}<li class="item"><a href="{$link->getPageLink('best-sales')|escape:'html'}" title="{l s='Best sellers' mod='blockcms'}">{l s='Best sellers' mod='blockcms'}</a></li>{/if} i delete it.. nothing changes Vekia T_T Link to comment Share on other sites More sharing options...
vekia Posted February 16, 2014 Share Posted February 16, 2014 and what file you changed? (full path) Link to comment Share on other sites More sharing options...
Adam Akhirat Posted February 23, 2014 Share Posted February 23, 2014 and what file you changed? (full path) /home/loverfra/public_html/themes/default/modules/blockcms/blockcms.tpl Link to comment Share on other sites More sharing options...
vekia Posted February 23, 2014 Share Posted February 23, 2014 so you changed correct file you recompiled theme? or you still don't know how to turn on force compile? Link to comment Share on other sites More sharing options...
Adam Akhirat Posted February 23, 2014 Share Posted February 23, 2014 like this? Link to comment Share on other sites More sharing options...
vekia Posted February 24, 2014 Share Posted February 24, 2014 disable cache and click on button to clear smarty cache & autoload cache Link to comment Share on other sites More sharing options...
santorinisunglasses Posted September 19, 2017 Share Posted September 19, 2017 hello how i can edit the text "Information" on blockcms in footer of prestashop 1.6 or delete that word ???? Link to comment Share on other sites More sharing options...
Recommended Posts