Jump to content

Image Slider & Facebook Block


Recommended Posts

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

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.

  • Like 1
Link to comment
Share on other sites

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();
}
  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...