thryciuk Posted February 20, 2016 Share Posted February 20, 2016 Hi, Relatively new to using Prestashop 1.6.1.4 and have a few questions. My site http://ag.aicsupplyinc.com/ I would like to know how to make the image slider the full width if possible? Also how would I get the facebook block into the footer. I did search the forums but havent had much luck. Thanks in advance for your help. Trevor Link to comment Share on other sites More sharing options...
shacker Posted February 23, 2016 Share Posted February 23, 2016 you need to remove the adds in tbhe right from the themeconfigurator to get the full width facebook module dont have hook in footer, only in left/right column Link to comment Share on other sites More sharing options...
Knowband Plugins Posted February 25, 2016 Share Posted February 25, 2016 Hi, Shacker is right, Facebook block don't has hook in footer but you can use custom Js code to move it to footer. Try below code in your script file which is rendering on homepage. $(document).ready(function(){ $('#facebook_block').appendTo('#htmlcontent_footer'); }); If you don't want to modify your core, you can use below module to add above javascript code in homepage only. http://addons.prestashop.com/en/page-customization/21546-knowband-custom-css-and-js.html Let us know if you need some assistance. 1 Link to comment Share on other sites More sharing options...
shacker Posted February 26, 2016 Share Posted February 26, 2016 Hi, Shacker is right, Facebook block don't has hook in footer but you can use custom Js code to move it to footer. Try below code in your script file which is rendering on homepage. $(document).ready(function(){ $('#facebook_block').appendTo('#htmlcontent_footer'); }); If you don't want to modify your core, you can use below module to add above javascript code in homepage only. http://addons.prestashop.com/en/page-customization/21546-knowband-custom-css-and-js.html Let us know if you need some assistance. problem of that is that cant move the position. Best option is add the hook footer. Edit the modules/blockfacebook/blockfacebook.php and add this function before the last } public function hookDisplayFooter() { $this->_assignMedia(); return $this->hookDisplayHome(); } 1 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