Khooptong Posted October 18, 2016 Share Posted October 18, 2016 How do I link all info to their own pages, fx: when I click on Delivery under Information, it should open up in another web page. I tried the module, but it didn't work; I tried looking for tutorials but couldn't find any. I am new to Prestashop. My version is 1.6.1.14. I have attached a screenshot here. I want all of them to point to their own pages. Please help. Thank you in advance. Link to comment Share on other sites More sharing options...
shokinro Posted October 19, 2016 Share Posted October 19, 2016 you will need to add attribute target to each hyperlink A tag. for example <a href="the url of the page">The Page<a> ==> <a href="the url of the page" target="_new">The Page<a> The footer contents is coming from different modules, you you will need to modify the theme file of different modules. Link to comment Share on other sites More sharing options...
Khooptong Posted October 19, 2016 Author Share Posted October 19, 2016 Thank you for the response, Shokinro. However, could you please explain and guide in a more layman's term and in greater details? As I am new to this I don't quite follow. Excuse my ignorance. Link to comment Share on other sites More sharing options...
shokinro Posted October 19, 2016 Share Posted October 19, 2016 (edited) As mentioned previously, the footer block comes from modules, for example My Account block is from module blockmyaccountfooter You can try to modify following file /themes/YourThemeFolder/modules/blockmyaccountfooter/blockmyaccountfooter.tpl Here is one example From <li><a href="{$link->getPageLink('history', true)|escape:'html':'UTF-8'}" title="{l s='My orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> To <li><a href="{$link->getPageLink('history', true)|escape:'html':'UTF-8'}" target="_new" title="{l s='My orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> Edited October 19, 2016 by shokinro (see edit history) Link to comment Share on other sites More sharing options...
rocky Posted October 19, 2016 Share Posted October 19, 2016 It's themes/default-bootstrap/modules/blockmyaccountfooter/blockmyaccountfooter.tpl for the first column. Add target="_blank" to each of the <a> links. For the other columns, it's themes/default-bootstrap/modules/blockcms/blockcms.tpl at the end of the file after <!-- Block CMS module footer --> 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