Why can't I use correctly the admin tab (only for PS 1.6.1.0)?
Why cannot I use correctly the module's admin tab (only for PS 1.6.1.0)
You are on PS 1.6.1.0, and you got a JavaScript issue that prevent you to generate a reporting or add a manual review (Order Tax Profit report, Customer ratings and reviews Pro) via the back-office?
This problem is a known bug, and it comes from the PS solution on the version 1.6.1.0. A bug has been introduced in the header.inc.php file located in the back-office admin folder that do not declare the using of JavaScript correctly.
Here is what you need to do:
- Download the header.inc.php file that you can find in the back-office admin folder, and do ti via your FTP Client
- Next you'll see this part of the code:
Context::getContext()->smarty->assign(array(
'navigationPipe', Configuration::get('PS_NAVIGATION_PIPE'),
'meta_title' => implode(' '.Configuration::get('PS_NAVIGATION_PIPE').' ', $title),
'display_header' => true,
'display_footer' => true,
));
- Please add the highlighted green line as below:
Context::getContext()->smarty->assign(array(
'navigationPipe', Configuration::get('PS_NAVIGATION_PIPE'),
'meta_title' => implode(' '.Configuration::get('PS_NAVIGATION_PIPE').' ', $title),
'display_header' => true,
'display_header_javascript' => true,
'display_footer' => true,
));
- At last, upload your header.inc.php file via your FTP Client
Here it is, your problem is solved, and the JavaScript works fine again on your back-office.