Jump to content

homefeatured slider zdjec


magisterson

Recommended Posts

ten moduł pokazuje najnowsze produkty, a mi chodzi o polecane.

Ale znalazłem tez moduł o nazwie: loffeatured.v.1.1 i on działą tak jak bym chciał

 

Tylko ze jest taki problem ze chciałem go przeniesc na dół (transplant modułu), ale nie wspiera stopki:(

Pewnie trzeba dodać jakiś kod w pliku PHP tak jak pomogłeś mi tutaj @vekia

http://www.prestashop.com/forums/topic/271987-polecanefeatured-na-dole/

Link to comment
Share on other sites

dzięki!

 

no to zaczynamy ;)

 

w pliku loffeatured.php jest funkcja instalacyjna function install() - zmień ją na:

 

function install(){ 
if (!parent::install())
return false;
if(!$this->registerHook('header')) return false;
if(!$this->registerHook('footer')) return false;
if(!$this->registerHook('top')) return false;
return true;
}

dodałem registerhook('footer')

 

 

następnie zaraz za: 

 

dodałem:

function hookFooter($params) {
		return $this->processHook( $params,"home");
	}

po wszystkim odinstalowałem moduł i zainstalowałem go ponownie.

przeszedłem do zakładki moduły > pozycje

odnalazłem listę modułów "displayTop" i "displayHome" (nie displayHeader!) i usunąłem moduł loffeatured z tych pozycji

 

po wszystkim moduł wyświetla się w stopce :)

 

 

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