Answer the question
In order to leave comments, you need to log in
Why is the hook not applied in prestashop?
I'm trying to create a button to add to my wishlist. I created a hook, registered it, but I can't do anything with it( What am I doing wrong?
mymodule.php
public function install()
{
Configuration::updateValue('FAVORITES_LIVE_MODE', false);
return parent::install() &&
$this->registerHook('header') &&
$this->registerHook('backOfficeHeader');
$this->registerHook('addToWishlist');
}
public function hookAddToWishlist()
{
return "Hello from ".$this->name;
}
<strong>{hook h='addToWishlist' mod='favorites'}</strong>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question