Jump to content
  • 0

Hook - Slider zdjęć Prestashop 1.6.1.1


pbpo

Question

Mam taki problemik. 

 

Chciałbym móc umieścić moduł "Slider zdjęć na głównej stronie (by PrestaShop)" w miejscach "displayHomeTab oraz displayHomeTabContent".

 

Oryginalnie nie ma tych dwóch opcji przy "przemieszczaniu" modułu. Jest mi ktoś w stanie pomóc "wyprodukować" dwa hooki ? 

 

Próbowałem zrobić hooka analogicznie do tych które już były zdefiniowane (kod poniżej), ale nie działa. (wyświetla się w menu w BO, jednak po zapisaniu ustawień nie widać go na stronie w danym miejscu).

 

 

public function hookdisplayHomeTab($params)
	{
		return $this->hookdisplayHomeTabContent($params);
	}
			
	public function hookdisplayHomeTabContent()
	{
		if (!isset($this->context->controller->php_self) || $this->context->controller->php_self != 'index')
			return;
		
		if (!$this->_prepareHook())
			return false;

		return $this->display(__FILE__, 'homeslider.tpl', $this->getCacheId());
	}		

Wyświetla mi się slider ale tylko jeden, tak jak by js się nie ładował.

Edited by pbpo (see edit history)
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...