Page 1 of 1

Review not working v 2.0.1.1

Posted: Mon Jul 20, 2015 2:53 am
by fred123
When you review a product using the mobile version of the site, it doesn't work.

You click submit and the review doesn't go anywhere, no acknowledgement and it doesn't save to admin.

Any ideas?

Thanks

Re: Review not working v 2.0.1.1

Posted: Mon Jul 20, 2015 12:01 pm
by inactiveaccount9912
Do you have a custom theme installed? Cause it seems to be working ok on the default one.

Re: Review not working v 2.0.1.1

Posted: Mon Jul 20, 2015 3:28 pm
by fred123
No its default theme but with the theme customiser module..

Re: Review not working v 2.0.1.1

Posted: Tue Jul 21, 2015 1:14 am
by inactiveaccount9912
Post a link to have a look at it.

Re: Review not working v 2.0.1.1

Posted: Tue Jul 21, 2015 1:20 am
by fred123

Re: Review not working v 2.0.1.1

Posted: Tue Jul 21, 2015 1:37 am
by inactiveaccount9912
You have the same issue on desktop, the write method from product.php responds with:

Code: Select all

<b>Warning</b>: html_entity_decode() expects parameter 1 to be string, array given in <b>.../system/library/mail.php</b> on line <b>30</b><b>Notice</b>: Error: E-Mail to required! in <b>/.../system/library/mail.php</b> on line <b>63</b>
Disabling the mail send on new review should temorary solve the issue.You should look into catalog/model/catalog/review.php and its ocmod/vqmod corespondents to see why you get the email errors, it doesnt even send the store email to the mail library.

Re: Review not working v 2.0.1.1

Posted: Tue Jul 21, 2015 1:42 am
by fred123
Thanks, so its an opencart issue?

Re: Review not working v 2.0.1.1

Posted: Tue Jul 21, 2015 1:47 am
by fred123
Ok that has fixed the desktop version but the mobile version is the same.

Any other ideas?

Thanks so much for your help :)

Re: Review not working v 2.0.1.1

Posted: Tue Jul 21, 2015 3:32 pm
by inactiveaccount9912
The send button its overlaped by the wishlist and compare div so you can not click the button.Edit the file catalog/view/theme/yourtheme/template/product/product.tpl and add the line:

Code: Select all

<div class="clearfix"></div>
before the closing tag of the buttons div from the reviews code.

Re: Review not working v 2.0.1.1

Posted: Tue Jul 21, 2015 3:57 pm
by fred123
Brill thanks :)