tonito Posted March 29, 2009 Share Posted March 29, 2009 Hi,Anybody knows how to transplant the "Block Link" module to a top navigation bar? I have tried WizW-NavBar and Horizontal Navigation Bar but I would like something more flexible (that I can edit in the admin side [unlike WizW-NavBar] and that I would not list all categories at once [unlike Horizontal Navigation Bar]).http://www.ifixit.com/ (guide / discuss / etc) is good example of what I would like to achieve.I posted a similar entry in French here: http://www.prestashop.com/forums/viewthread/15854/graphisme/bloc_lien_block_link_en_barre_de_navigation. Link to comment Share on other sites More sharing options...
Ardian Yuli Setyanto Posted March 29, 2009 Share Posted March 29, 2009 to transplant a module in top hook, you have to ensure that in module php file there is function hookTop($params) if none, you can add this function which call another defined hook function like function hookRightColumn($params) { return $this->hookLeftColumn($params); } good luck Link to comment Share on other sites More sharing options...
tonito Posted March 30, 2009 Author Share Posted March 30, 2009 Thank you for your fast answer.It worked with the following code: function hookTop($params) { return $this->hookLeftColumn($params); } Now, I have to work the according css. 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