Hi,
I'm testing the module for prestashop and found 3 issues:
it gave two warnings:
Notice: Use of undefined constant PS_ADMIN_DIR - assumed 'PS_ADMIN_DIR'
and
Notice: Undefined property: AdminWebRotate360::$controller_type
So I had to fix it in admin_x\tabs\AdminWebRotate360.php:
line 2:
and add line 13:
The issue I'm still having is that I can see the rotating shoe in the default theme but not in my theme. My theme has <div id="image-block"> but nothing shows up there.
Any help is appreciated
Yair
I'm testing the module for prestashop and found 3 issues:
it gave two warnings:
Notice: Use of undefined constant PS_ADMIN_DIR - assumed 'PS_ADMIN_DIR'
and
Notice: Undefined property: AdminWebRotate360::$controller_type
So I had to fix it in admin_x\tabs\AdminWebRotate360.php:
line 2:
Code:
include_once( _PS_ADMIN_DIR_.'/../classes/AdminTab.php');
and add line 13:
Code:
$this->controller_type = 'admin';
The issue I'm still having is that I can see the rotating shoe in the default theme but not in my theme. My theme has <div id="image-block"> but nothing shows up there.
Any help is appreciated
Yair