Reputation: 143
I have a plugin is working fine with Prestashop 1.6 but since Prestashop made major changes in the latest version 1.7 the plugin stopped working.
I have followed the link which they provided but still the plugin is not working:
http://build.prestashop.com/news/starter-theme-news-3/
The plugin is working perfect in the backend I have installed it, But the problem is not showing up on the checkout process, I have enabled dev mode to see if there is any error but nothing, I have checked also the error logs there is nothing.
Here is the code:
Payroll.php and payment.tpl:
Upvotes: 0
Views: 2258
Reputation: 2987
In the install you register the module in payment:
$this->registerHook('payment')
Instead of paymentoptions:
$this->registerHook('paymentOptions')
As used in the ps_wirepayment module.
Upvotes: 1