jkility Posted September 10, 2016 Share Posted September 10, 2016 Hi, In regards to my site, www.fab-fudge.co.uk , The nav bar just below the banner. Is it possible to edit that at all to add more links etc? As I've tried looking for a while and cannot find where to edit it at all. Regards Link to comment Share on other sites More sharing options...
modprestashop Posted September 11, 2016 Share Posted September 11, 2016 (edited) I could not access your website but if you are talking about navbar after banner which holds language, currency, login, my account links then it is displayNav hook. You can add as many links as you want to add buy custom module. Create a module and transplant it to displayNav hook. Yes, now i can access your site and you are asking about navigation where contact us and sign in links. Yes, that is dipslayNav hook. You will find it in your /themes/{your-theme-name}/header.tpl file as {hook h="displayNav"} So you need to transplant your module at this hook which haev links you want to add. This is standard method. If you can't build a module then just modify that code and add static links in it. Edited September 11, 2016 by modprestashop (see edit history) Link to comment Share on other sites More sharing options...
jkility Posted September 13, 2016 Author Share Posted September 13, 2016 I could not access your website but if you are talking about navbar after banner which holds language, currency, login, my account links then it is displayNav hook. You can add as many links as you want to add buy custom module. Create a module and transplant it to displayNav hook. Yes, now i can access your site and you are asking about navigation where contact us and sign in links. Yes, that is dipslayNav hook. You will find it in your /themes/{your-theme-name}/header.tpl file as {hook h="displayNav"} So you need to transplant your module at this hook which haev links you want to add. This is standard method. If you can't build a module then just modify that code and add static links in it. Hi, I cant seem to find it, the only bit I can find in the header.tpl is below but not sure where to add links? {capture name='displayNav'}{hook h='displayNav'}{/capture} {if $smarty.capture.displayNav} <div class="nav"> <div class="container"> <div class="row"> <nav>{$smarty.capture.displayNav}</nav> </div> </div> </div> {/if} 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