webprog Posted May 13, 2020 Share Posted May 13, 2020 Found small bug in productcomments module v4.0.1, when visit main page of the shop. See attempt of ajax call to controller of the module. Attempts appears randomly. productcomments/CommentGrade?id_product=id 500 (Internal Server Error) Link to comment Share on other sites More sharing options...
webprog Posted May 13, 2020 Author Share Posted May 13, 2020 I found the solution to add this code to the modules\productcomments\controllers\front\CommentGrade.php public function initContent(){ if ($this->context->controller->php_self != 'product') { return; } parent::initContent(); } It works. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now