rxdUser Posted February 13, 2015 Share Posted February 13, 2015 Hi 2 All I want to transplant the themeconfigurator module to another hook.Its hooked with display home but the content is showing on top of home page ie below the slider.I want to show its content blow the home page ie above the footer.I have tried to transplant it to the hook beforFooter but it says "This module can not be transplanted to this hook". How can I change its position.I have tried the module position in BO,have tried through live edit,have changed its position in the home hooks but all r not working. How to do this,plz help. Link to comment Share on other sites More sharing options...
FullCircles Posted February 13, 2015 Share Posted February 13, 2015 If it can't be transplanted, it means there isn't a function in the module for that particular hook. You'll want to edit the file for it, probably modules/themeconfigurator/themeconfigurator.php, find a section called hookDisplayHome or some such.. You'll then want to add a new function, named after the hook you'd like, and pointing to that original hook: public function hookBeforeFooter($params) { return $this->hookDisplayHome($params); } After that, it should let you transplant it to the new position 1 Link to comment Share on other sites More sharing options...
rxdUser Posted February 14, 2015 Author Share Posted February 14, 2015 Thank you very much for the help.It worked!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Link to comment Share on other sites More sharing options...
elabrelatas Posted March 22, 2015 Share Posted March 22, 2015 Hello, I saw that it's solved topic, but I want to ask something about it that I didn't found in other topics. I used this code and ¡it works properly! but if I update the module, this change again the position and I need to edit and write again the function into module.php. There are any way to insert this code to one archive that allow me to update and don't modify the module.php again? Thank you for your response 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