ajensen27 Posted September 19, 2012 Share Posted September 19, 2012 (edited) I'm trying to add comments for my products and it's not working. Does anyone know if this is a known issue or not? I tried both Chrome and IE and both have the following error message when I hit submit. "Failed to load resource: the server responded with a status of 404 (Not Found)". Edited September 19, 2012 by ajensen27 (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted September 19, 2012 Share Posted September 19, 2012 which module you use? which comments? Link to comment Share on other sites More sharing options...
ajensen27 Posted September 19, 2012 Author Share Posted September 19, 2012 Sorry, the one that came with Prestashop 1.5. It's called "Product Comments" vs 2.3 and is developed by Prestashop. It's under Front Office Features modules. Thanks! Link to comment Share on other sites More sharing options...
ajensen27 Posted September 20, 2012 Author Share Posted September 20, 2012 No one else having this problem? I tried uninstalling and reinstalling the module but that didn't work either. You can see what I mean by visiting my test site... http://www.incontishop.com and trying to write a comment on a product. Link to comment Share on other sites More sharing options...
benjamin utterback Posted September 20, 2012 Share Posted September 20, 2012 Hello ajensen, thank you for the message. Have you tried deleting and reuploading the module files via FTP. If you do, please make sure to back up! Doing that might solve your problem. Let me know if that helps! -Benjamin Link to comment Share on other sites More sharing options...
VictorN Posted September 22, 2012 Share Posted September 22, 2012 I also have a problem with the module productcomments. The window for commenting, but when you click "Send" nothing is sent. Any help. Link to comment Share on other sites More sharing options...
copain Posted September 23, 2012 Share Posted September 23, 2012 Same problem here (1.5.0.17). Works fine with Friendly URL disabled but when I enable Friendly URL the send button won't work. 1 Link to comment Share on other sites More sharing options...
donnytkc Posted September 23, 2012 Share Posted September 23, 2012 i have the same problem here as well, send button never works after upgrading to version 1.5 really need some helps. Link to comment Share on other sites More sharing options...
premanshu Posted September 24, 2012 Share Posted September 24, 2012 I am too looking for a solution.. One thing I noticed is the url which is generating 404 is pointing to "/modules/productcomments/default&action=" although the default.php is in "/modules/productcomments/controllers/front/" Link to comment Share on other sites More sharing options...
donnytkc Posted September 24, 2012 Share Posted September 24, 2012 I am too looking for a solution.. One thing I noticed is the url which is generating 404 is pointing to "/modules/productcomments/default&action=" although the default.php is in "/modules/productcomments/controllers/front/" are there any ways to force the url to point to default.php in "/modules/productcomments/controllers/front/", maybe that helps ? Link to comment Share on other sites More sharing options...
Jonathan A. Posted September 27, 2012 Share Posted September 27, 2012 I am experimenting the same problem, con you help me? Link to comment Share on other sites More sharing options...
Popular Post PrestaShopDeveloper Posted September 27, 2012 Popular Post Share Posted September 27, 2012 (edited) Open \modules\productcomments\js\productcomments.js at row 57 (PrestaShop 1.5.0.17) there's: url_options = productcomments_url_rewrite ? '&' : '?'; replace it with: url_options = '?'; If this helps consider giving me 5 stars at my profile and "like" my comment. PS: This is the quickest way (the simplest). For the people that know a little bit JS, they can just remove that line, remove the variable using at row 59, and add the "?" before "action", so row 59 will be: url: productcomments_controller_url+'?action=add_comment&secure_key='+secure_key, Edited September 27, 2012 by UltraWebDev (see edit history) 15 Link to comment Share on other sites More sharing options...
Jonathan A. Posted September 28, 2012 Share Posted September 28, 2012 I think the ploblems is in thi file productcomments.tpl, i am sendig a copy. <script type="text/javascript"> var productcomments_controller_url = '{$productcomments_controller_url}'; var confirm_report_message = "{l s='Are you sure you want report this comment?' mod='productcomments'}"; var secure_key = "{$secure_key}"; var productcomments_url_rewrite = '{$productcomments_url_rewriting_activated}'; </script> <div id="idTab5"> <div id="product_comments_block_tab"> {if $comments} {foreach from=$comments item=comment} {if $comment.content} <div class="comment clearfix"> <div class="comment_author"> <span>{l s='Grade' mod='productcomments'} </span> <div class="star_content clearfix"> {section name="i" start=0 loop=5 step=1} {if $comment.grade le $smarty.section.i.index} <div class="star"></div> {else} <div class="star star_on"></div> {/if} {/section} </div> <div class="comment_author_infos"> <strong>{$comment.customer_name|escape:'html':'UTF-8'}</strong><br/> <em>{dateFormat date=$comment.date_add|escape:'html':'UTF-8' full=0}</em> </div> </div> <div class="comment_details"> <h4>{$comment.title}</h4> <p>{$comment.content|escape:'html':'UTF-8'|nl2br}</p> <ul> {if $comment.total_advice > 0} <li>{l s='%1$d out of %2$d people found this review useful.' sprintf=[$comment.total_useful,$comment.total_advice] mod='productcomments'}</li> {/if} {if $logged == 1} {if !$comment.customer_advice} <li>{l s='Was this comment useful to you?' mod='productcomments'}<button class="usefulness_btn" data-is-usefull="1" data-id-product-comment="{$comment.id_product_comment}">{l s='yes' mod='productcomments'}</button><button class="usefulness_btn" data-is-usefull="0" data-id-product-comment="{$comment.id_product_comment}">{l s='no' mod='productcomments'}</button></li> {/if} {if !$comment.customer_report} <li><span class="report_btn" data-id-product-comment="{$comment.id_product_comment}">{l s='Report abuse' mod='productcomments'}</span></li> {/if} {/if} </ul> </div> </div> {/if} {/foreach} {else} {if ($too_early == false AND ($logged OR $allow_guests))} <p class="align_center"> <a id="new_comment_tab_btn" class="open-comment-form" href="#new_comment_form">{l s='Be the first to write your review' mod='productcomments'} !</a> </p> {else} <p class="align_center">{l s='No customer comments for the moment.' mod='productcomments'}</p> {/if} {/if} </div> </div> <!-- Fancybox --> <div style="display: none;"> <div id="new_comment_form"> <form action="#" method="post" id="sendComment" style="display:block;"> <h2 class="title">{l s='Write your review' mod='productcomments'}</h2> <div class="product clearfix"> <img src="{$link->getImageLink($stf_product->link_rewrite, $productcomment_cover, 'home')}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$stf_product->name|escape:html:'UTF-8'}" /> <div class="product_desc"> <p class="product_name"><strong>{$product->name}</strong></p> {$product->description_short} </div> </div> <div class="new_comment_form_content"> <h2>{l s='Write your review' mod='productcomments'}</h2> <div id="new_comment_form_error" class="error" style="display: none;"> <ul></ul> </div> {if $criterions|@count > 0} <ul id="criterions_list"> {foreach from=$criterions item='criterion'} <li> <label>{$criterion.name|escape:'html':'UTF-8'}:</label> <div class="star_content"> <input class="star" type="radio" name="criterion[{$criterion.id_product_comment_criterion|round}]" value="1" /> <input class="star" type="radio" name="criterion[{$criterion.id_product_comment_criterion|round}]" value="2" /> <input class="star" type="radio" name="criterion[{$criterion.id_product_comment_criterion|round}]" value="3" checked="checked" /> <input class="star" type="radio" name="criterion[{$criterion.id_product_comment_criterion|round}]" value="4" /> <input class="star" type="radio" name="criterion[{$criterion.id_product_comment_criterion|round}]" value="5" /> </div> <div class="clearfix"></div> </li> {/foreach} </ul> {/if} <label for="comment_title">{l s='Title' mod='productcomments'}: <sup class="required">*</sup></label> <input id="comment_title" name="title" type="text" value=""/> <label for="content">{l s='Comment' mod='productcomments'}: <sup class="required">*</sup></label> <textarea id="content" name="content"></textarea> {if $allow_guests == true && $logged == 0} <label>{l s='Your name' mod='productcomments'}: <sup class="required">*</sup></label> <input id="commentCustomerName" name="customer_name" type="text" value=""/> {/if} <div id="new_comment_form_footer"> <input id="id_product_comment_send" name="id_product" type="hidden" value='{$id_product_comment_form}'></input> <p class="fl required"><sup>*</sup> {l s='Required fields' mod='productcomments'}</p> <p class="fr"> <a href="#" onclick="$.fancybox.close();">{l s='Cancel' mod='productcomments'}</a> {l s='or' mod='productcomments'} <button id="submitNewMessage" name="submitMessage" type="submit">{l s='Send' mod='productcomments'}</button> </p> <div class="clearfix"></div> </div> </div> </form><!-- /end new_comment_form_content --> </div> </div> <!-- End fancybox --> Maybe you can help me.. Tnank you... Link to comment Share on other sites More sharing options...
VictorN Posted September 28, 2012 Share Posted September 28, 2012 Thank you very much UltraWebDev! Change in line 59 has really helped! Link to comment Share on other sites More sharing options...
redshop Posted September 30, 2012 Share Posted September 30, 2012 Thank you UltroWebDev, It work! change line 59. Link to comment Share on other sites More sharing options...
donnytkc Posted October 1, 2012 Share Posted October 1, 2012 yes it really works , thanks alot UltroWebDev !!! Link to comment Share on other sites More sharing options...
premanshu Posted October 1, 2012 Share Posted October 1, 2012 Thanks it works finally.. Link to comment Share on other sites More sharing options...
Jonathan A. Posted October 1, 2012 Share Posted October 1, 2012 We corrected the file productcomments.js. But In my case the problem persists. What do you think might be causing the problem? Link to comment Share on other sites More sharing options...
PrestaShopDeveloper Posted October 1, 2012 Share Posted October 1, 2012 I'll need to see the site and to test there. In my case all of the 2 variants fix this issue. We corrected the file productcomments.js. But In my case the problem persists. What do you think might be causing the problem? Link to comment Share on other sites More sharing options...
Damien Metzger Posted October 2, 2012 Share Posted October 2, 2012 Hello, The test was not good indeed. I fixed it. The goal of the condition was to adapt the URL for friendly URLs if they were activated. Regards, 1 Link to comment Share on other sites More sharing options...
Jonathan A. Posted October 2, 2012 Share Posted October 2, 2012 My site is http://www.disalca.com/web/vitaminas/22-farmavit.html Link to comment Share on other sites More sharing options...
PrestaShopDeveloper Posted October 2, 2012 Share Posted October 2, 2012 The url that is adding the comment is http://www.disalca.com/web/comentario-producto?module=productcomments?action=add_comment&secure_key=e5997fea0bd2e3f7e2618ea3adf7dd16 The "?" before action should be &. Can you try with the following "row 59": url: productcomments_controller_url+'&action=add_comment&secure_key='+secure_key, My site is http://www.disalca.c...2-farmavit.html 2 Link to comment Share on other sites More sharing options...
ajensen27 Posted October 2, 2012 Author Share Posted October 2, 2012 Thanks for the help UltraWebDev! That did the trick. Damien, you said you fixed the problem and also said you fixed it in the forget but I don't see an update to the module. Have you not released it yet or are you going to include this update in the next Prestashop release? Thanks! Link to comment Share on other sites More sharing options...
Jonathan A. Posted October 2, 2012 Share Posted October 2, 2012 The url that is adding the comment is The "?" before action should be &. Can you try with the following "row 59": url: productcomments_controller_url+'&action=add_comment&secure_key='+secure_key, You are amazing, thank you for your help. Link to comment Share on other sites More sharing options...
reverie2012 Posted October 10, 2012 Share Posted October 10, 2012 (edited) Hi, my comment can be post to server, i can see it under validated section, but the box was not able to close itself, it seems like it didn't get back the ajax feedback...anyone have idea how to fix it...? thanks edit: ok , i found out the problem....as i don't have any criterion, and result in getting php warning in line 113 (default.php), and fail the json string Edited October 10, 2012 by reverie2012 (see edit history) Link to comment Share on other sites More sharing options...
Susanna Posted October 19, 2012 Share Posted October 19, 2012 Thank you very much UltraWebDev Open \modules\productcomments\js\productcomments.js at row 57 (PrestaShop 1.5.0.17) there's: url_options = productcomments_url_rewrite ? '&' : '?'; replace it with: url_options = '?'; If this helps consider giving me 5 stars at my profile and "like" my comment. PS: This is the quickest way (the simplest). For the people that know a little bit JS, they can just remove that line, remove the variable using at row 59, and add the "?" before "action", so row 59 will be: url: productcomments_controller_url+'?action=add_comment&secure_key='+secure_key, Link to comment Share on other sites More sharing options...
ajensen27 Posted October 19, 2012 Author Share Posted October 19, 2012 The issue was also fixed in version 1.5.1... Just an FYI Link to comment Share on other sites More sharing options...
pepfoto Posted November 3, 2012 Share Posted November 3, 2012 Hmmm, I can't even INSTALL this module under 1.5.2 - it is uninstalled by default and when installing PS throws the "Following modules couldn't be installed" error. Link to comment Share on other sites More sharing options...
kamisetafutbol Posted December 5, 2012 Share Posted December 5, 2012 Hmmm, I can't even INSTALL this module under 1.5.2 - it is uninstalled by default and when installing PS throws the "Following modules couldn't be installed" error. I have the same problem as you. Did you get to fix it? Link to comment Share on other sites More sharing options...
Rayan Posted February 6, 2013 Share Posted February 6, 2013 I have a problem with the module productcomments. The window for commenting opens, but when you click "Send" nothing is sent. I am using PrestaShop™ 1.5.3.1 Also the solution which ultraweb posted doesn't work in 1.5.3.1 Any other solutions? Link to comment Share on other sites More sharing options...
Guilherme Dutra Posted February 8, 2013 Share Posted February 8, 2013 Hmmm, I can't even INSTALL this module under 1.5.2 - it is uninstalled by default and when installing PS throws the "Following modules couldn't be installed" error. I have the same problem. I update to 1.5.3.1 and now i can not install this module. Link to comment Share on other sites More sharing options...
magicliltouch Posted February 9, 2013 Share Posted February 9, 2013 I have a problem with the module productcomments. The window for commenting opens, but when you click "Send" nothing is sent. I am using PrestaShop™ 1.5.3.1 Also the solution which ultraweb posted doesn't work in 1.5.3.1 Any other solutions? Same problem here ! Link to comment Share on other sites More sharing options...
jimmyc Posted February 18, 2013 Share Posted February 18, 2013 just clicking the reviews or write a review does not even work for me. Those fixes seem to already be in mu 1.5.3.2. the comments tab is missing for me. Any ideas? Link to comment Share on other sites More sharing options...
wmh90 Posted March 9, 2013 Share Posted March 9, 2013 Well, my products comment module in PS 1.5.3.1 is not working. When I install the module, my product page stop loading, giving server error, I guess is some code error, but as I'm not an expert, I don't know what can be. I tryed with the module from 1.4.x version, but it doesn't install. Someone have this issue? Can someone upload the module in this thread so I can try using it? Thanks! 1 Link to comment Share on other sites More sharing options...
jimmyc Posted March 19, 2013 Share Posted March 19, 2013 Well, my products comment module in PS 1.5.3.1 is not working. When I install the module, my product page stop loading, giving server error, I guess is some code error, but as I'm not an expert, I don't know what can be. I tryed with the module from 1.4.x version, but it doesn't install. Someone have this issue? Can someone upload the module in this thread so I can try using it? Thanks! Me also i'll give it a shot. I have it working on one site and not the other. A little confused here. Link to comment Share on other sites More sharing options...
wmh90 Posted March 19, 2013 Share Posted March 19, 2013 I'm using YotPo by now, I guess is the best, try it people. Link to comment Share on other sites More sharing options...
perusi Posted April 18, 2013 Share Posted April 18, 2013 P.S 1.5.3.1 i`m getting this error when i try to enter a comment: Title is incorrect Comment is incorrect Customer name is incorrect Product not found Any idea why? Link to comment Share on other sites More sharing options...
jahubego Posted April 26, 2013 Share Posted April 26, 2013 Open \modules\productcomments\js\productcomments.js at row 57 (PrestaShop 1.5.0.17) there's: url_options = productcomments_url_rewrite ? '&' : '?'; replace it with: url_options = '?'; If this helps consider giving me 5 stars at my profile and "like" my comment. PS: This is the quickest way (the simplest). For the people that know a little bit JS, they can just remove that line, remove the variable using at row 59, and add the "?" before "action", so row 59 will be: url: productcomments_controller_url+'?action=add_comment&secure_key='+secure_key, This saved my day! Thanks. Link to comment Share on other sites More sharing options...
nortom Posted May 6, 2013 Share Posted May 6, 2013 it's not working presta 1.5.4.1 with multiple attributes with one its works. Whats the problem? Link to comment Share on other sites More sharing options...
l.zuccarini Posted June 13, 2013 Share Posted June 13, 2013 Hi all, I have this module intalled on 1.5.3.1 version and all it's going well. It's possibile send an email confirmation to the customer as thankgiving? I'd like send to my custore a voucher. Any idea? Link to comment Share on other sites More sharing options...
l.zuccarini Posted June 13, 2013 Share Posted June 13, 2013 I founded the solution to my questions! http://www.prestashop.com/forums/topic/252153-petite-astuce-pour-recevoir-un-email-lorsquun-commentaire-est-depose/page__hl__productcomment__fromsearch__1 Link to comment Share on other sites More sharing options...
lucian.marginean79 Posted September 23, 2013 Share Posted September 23, 2013 Seems there are some problems also on PS 1.5.5. The fix is very simple, just replace this line 62 on file modules/productcomments/js/productcomments.js: data: $('#fancybox_content form').serialize() with this one data: $('#new_comment_form form').serialize() Someone has changed the template on frontend and forget to change the js script to match the IDs form html code. Link to comment Share on other sites More sharing options...
benjamin utterback Posted September 23, 2013 Share Posted September 23, 2013 Seems there are some problems also on PS 1.5.5. The fix is very simple, just replace this line 62 on file modules/productcomments/js/productcomments.js: data: $('#fancybox_content form').serialize() with this one data: $('#new_comment_form form').serialize() Someone has changed the template on frontend and forget to change the js script to match the IDs form html code. The fix we have implemented is actually changing that line to data: $('#id_new_comment_form').serialize(), Does this work for you? Link to comment Share on other sites More sharing options...
PerinyOutlet Posted October 8, 2013 Share Posted October 8, 2013 I'm getting this error when user wants to comment: Title is incorrect Comment is incorrect Product not found Link to comment Share on other sites More sharing options...
PerinyOutlet Posted October 8, 2013 Share Posted October 8, 2013 lucian.marginean79's solution worked just fine... Thank you Link to comment Share on other sites More sharing options...
kkmixs Posted October 15, 2013 Share Posted October 15, 2013 I am using the same module...Right now i am facing three problem with this please help me out1) How to remove the title options from the product comment...i dnt want the title options in my comment.PLease note that some how i have managed to remove the title field from comment but after removing it when i leave a comment it give error as wrong title.2) There is options in this module about "Was this comment useful to you", but it seem it is not working on my website3) At last most important, even if the customer is logged in it is asking for the name of customerPlease note that i am using the same tpl file given above.... Link to comment Share on other sites More sharing options...
Mr S Posted October 15, 2013 Share Posted October 15, 2013 I have the same error I'm getting this error when user wants to comment: Title is incorrect Comment is incorrect Product not found I did a php dump in function ajaxProcessAddComment() to see the input being sent to /productcomments/default no review information is submitted from form. Also Firebug is showing only 3 GET and nothing in POST action=add_comment secure_key=*************** rand=*************** die(print_r($_POST,true).' :: '.print_r($_GET,true)); Link to comment Share on other sites More sharing options...
Mr S Posted October 15, 2013 Share Posted October 15, 2013 The fix we have implemented is actually changing that line to data: $('#id_new_comment_form').serialize(), Does this work for you? I had to add id="id_new_comment_form" to the file /modules/productcomments/productcomments.tpl <div id="new_comment_form"> <form action="#" id="id_new_comment_form"> <h2 class="title">{l s='Write your review' mod='productcomments'}</h2> Link to comment Share on other sites More sharing options...
randvell Posted November 1, 2013 Share Posted November 1, 2013 (edited) I had to add id="id_new_comment_form" to the file /modules/productcomments/productcomments.tpl <div id="new_comment_form"> <form action="#" id="id_new_comment_form"> <h2 class="title">{l s='Write your review' mod='productcomments'}</h2> Partly helps, now no errors displayed - 2-3 secs and window with comment closes. But website doesn't show the comment. What can I do? Edited November 1, 2013 by randvell (see edit history) Link to comment Share on other sites More sharing options...
Mr S Posted November 1, 2013 Share Posted November 1, 2013 Partly helps, now no errors displayed - 2-3 secs and window with comment closes. But website doesn't show the comment. What can I do? See if your setting is set to true for "All comments must be validated by an employee" in the Backofice -> Modules -> Product Comments Link to comment Share on other sites More sharing options...
SebastienSerre Posted November 8, 2013 Share Posted November 8, 2013 P.S 1.5.3.1 i`m getting this error when i try to enter a comment: Title is incorrect Comment is incorrect Customer name is incorrect Product not found Any idea why? Hello I've this problem en 1.5.6.0 Did you solved? Thx Link to comment Share on other sites More sharing options...
ptemmerman Posted November 23, 2013 Share Posted November 23, 2013 Me too on 1.5.6.0 Link to comment Share on other sites More sharing options...
eFotoserwis Posted November 28, 2013 Share Posted November 28, 2013 Hi, I have problem with this module in Presta 1.5.5.0. I've tried to change js and tpl file and nothing happend. When I click on "Write comment" button there's no action. Can You please help with this? My shop: mamula.pl Thanks, Link to comment Share on other sites More sharing options...
tingmei Posted November 29, 2013 Share Posted November 29, 2013 (edited) Same problem here ... in the TPL i have : <div id="new_comment_form"> <form id="id_new_comment_form" action="#"> <h2 class="title">{l s='Write your review' mod='productcomments'}</h2> and in the JS : url_options = parseInt(productcomments_url_rewrite) ? '?' : '&'; $.ajax({ url: productcomments_controller_url + url_options + 'action=add_comment&secure_key=' + secure_key + '&rand=' + new Date().getTime(), data: $('#id_new_comment_form').serialize(), type: 'POST', headers: { "cache-control": "no-cache" }, But no action ... Edited November 29, 2013 by tingmei (see edit history) Link to comment Share on other sites More sharing options...
benjamin utterback Posted November 29, 2013 Share Posted November 29, 2013 Same problem here ... in the TPL i have : <div id="new_comment_form"> <form id="id_new_comment_form" action="#"> <h2 class="title">{l s='Write your review' mod='productcomments'}</h2> and in the JS : url_options = parseInt(productcomments_url_rewrite) ? '?' : '&'; $.ajax({ url: productcomments_controller_url + url_options + 'action=add_comment&secure_key=' + secure_key + '&rand=' + new Date().getTime(), data: $('#id_new_comment_form').serialize(), type: 'POST', headers: { "cache-control": "no-cache" }, But no action ... Hi, what version are you using? The comment module works well on a default install and theme. Link to comment Share on other sites More sharing options...
eFotoserwis Posted November 29, 2013 Share Posted November 29, 2013 I have latest stable Presta (1.5.6.1) at the momment. Theme: Alysum 2.0. Link to comment Share on other sites More sharing options...
benjamin utterback Posted November 29, 2013 Share Posted November 29, 2013 Cool, with the default theme, was product comments working? It did for me, you may have to ask the Developer of the theme to see why the Product comments are not working. Link to comment Share on other sites More sharing options...
eFotoserwis Posted November 29, 2013 Share Posted November 29, 2013 I don't know that. Theme was installed right after presta installation. I've already contact with Promokit, theme dev. Thank You for reply. Link to comment Share on other sites More sharing options...
benjamin utterback Posted November 29, 2013 Share Posted November 29, 2013 Awesome. Make sure to test out all installations of modules and themes first. That way, you can know what was working and what was not working before you did changes. Let us know what the developer has said. I did test it for 1.5.6.1 and it worked for me. Link to comment Share on other sites More sharing options...
ps3z Posted November 30, 2013 Share Posted November 30, 2013 Awesome. Make sure to test out all installations of modules and themes first. That way, you can know what was working and what was not working before you did changes. Let us know what the developer has said. I did test it for 1.5.6.1 and it worked for me. my website have the same problem. comments module is working on default theme but not working on premium theme i typed to developer.im just waiting to him solve it. or should i do something? Regards Ps3z Link to comment Share on other sites More sharing options...
Rick4F Posted January 18, 2014 Share Posted January 18, 2014 I'm having this same error: I'm getting this error when user wants to comment: Title is incorrect Comment is incorrect Product not found Is there any solution to this available yet? Link to comment Share on other sites More sharing options...
benjamin utterback Posted January 21, 2014 Share Posted January 21, 2014 I'm having this same error: Is there any solution to this available yet? What version are you using? If you are using v1.5, make sure to back up and then replace the file modules/productcomments/js/productcomments.js with the file here, https://raw2.github.com/PrestaShop/PrestaShop/master/modules/productcomments/js/productcomments.js Copy and paste the contents of that link to replace what you have in the productcomments.js . Make sure to backup! 1 Link to comment Share on other sites More sharing options...
vansrv7 Posted January 22, 2014 Share Posted January 22, 2014 If you are using v1.5, make sure to back up and then replace the file modules/productcomments/js/productcomments.js with the file here, https://raw2.github.com/PrestaShop/PrestaShop/master/modules/productcomments/js/productcomments.js Same problem, tryied your code but no difference. Link to comment Share on other sites More sharing options...
MassiveRC Posted January 22, 2014 Share Posted January 22, 2014 I suppose there's no way to get back all those genuine, sincere, highly important comments my customers have left is there? Link to comment Share on other sites More sharing options...
ptemmerman Posted January 23, 2014 Share Posted January 23, 2014 Guys, forget about this module. I posted in this same thread a couple of months ago because I was experiencing the same problem in PS 1.5. Despite all the help from the forum, I never managed to get it working. However, a friend of mine (who had the same problem) told me he found an awesome FREE module that is so much better. https://www.yotpo.com/ Link to comment Share on other sites More sharing options...
Yotpo Posted January 26, 2014 Share Posted January 26, 2014 Thanks for the love, Ptemmerman. If anyone is interested in more info about Yotpo, check out our dedicated post on this forum. Link to comment Share on other sites More sharing options...
websprint Posted February 20, 2014 Share Posted February 20, 2014 (edited) For PS 1.5.6.x solution is:Go to modules/productcomments/js/productcomment.js on line 66 replace this: data: $('#id_new_comment_form').serialize(), to this: data: $('#new_comment_form form').serialize(),Solved! Edited February 20, 2014 by websprint (see edit history) 1 Link to comment Share on other sites More sharing options...
vansrv7 Posted February 20, 2014 Share Posted February 20, 2014 If you are using v1.5, make sure to back up and then replace the file modules/productcomments/js/productcomments.js with the file here, https://raw2.github.com/PrestaShop/PrestaShop/master/modules/productcomments/js/productcomments.js This works for me! (PS 1.5.6.1) Thanks Link to comment Share on other sites More sharing options...
VanessaBoutique Posted August 20, 2014 Share Posted August 20, 2014 Hello,I installed Product Comments v3.3.6 - by PrestaShop, Somehow I can't post commenbt on front end.When we click to be the first to comment, nothing happen. I tried many things, I read on the forum but no success. Anyone can help?Module is activated and I allow guest and employee to review. I use multistore mode. Let me know. Thanks! =) Link to comment Share on other sites More sharing options...
benjamin utterback Posted August 20, 2014 Share Posted August 20, 2014 Hello, I installed Product Comments v3.3.6 - by PrestaShop, Somehow I can't post commenbt on front end. When we click to be the first to comment, nothing happen. I tried many things, I read on the forum but no success. Anyone can help? Module is activated and I allow guest and employee to review. I use multistore mode. Let me know. Thanks! =) Do you have a link to your store? I can test it out. by the way, can you keep the color black of your text. It's kind of an informal rule for readability sake. Thanks! Link to comment Share on other sites More sharing options...
VanessaBoutique Posted August 20, 2014 Share Posted August 20, 2014 Hello, I installed Product Comments v3.3.6 - by PrestaShop, Somehow I can't post commenbt on front end. When we click to be the first to comment, nothing happen. I tried many things, I read on the forum but no success. Anyone can help? Module is activated and I allow guest and employee to review. I use multistore mode. Let me know. Thanks! =) I tried following this : http://hassadee.com/2013/02/26/how-to-add-product-comment-on-prestashop-1-5-3/ but step #3, form doesn't open, I think there is a bug... Hopefully someone can help me. Regards! Do you have a link to your store? I can test it out. Sure, one of sub-store is this one : http://achats.boutiquereseau.com/scorpionmasque/fr/ Link to comment Share on other sites More sharing options...
benjamin utterback Posted August 20, 2014 Share Posted August 20, 2014 I tried following this : http://hassadee.com/2013/02/26/how-to-add-product-comment-on-prestashop-1-5-3/ but step #3, form doesn't open, I think there is a bug... Hopefully someone can help me. Regards! Sure, one of sub-store is this one : http://achats.boutiquereseau.com/scorpionmasque/fr/ Are you using PrestaShop 1.5 or 1.6? I'm thinking it could be an issue with the template you are using. Link to comment Share on other sites More sharing options...
VanessaBoutique Posted August 20, 2014 Share Posted August 20, 2014 Are you using PrestaShop 1.5 or 1.6? I'm thinking it could be an issue with the template you are using. Hello, Prestashop : 1.6.0.6 Link to comment Share on other sites More sharing options...
igorgs Posted August 21, 2014 Share Posted August 21, 2014 Hi everybody, I have the same problem with prestashop 1.6.0.6 product components 2.3 and London soopatheme. I have reinstalled twice product components module and the result is the same, when you go to my front office and try to add a review, nothing happens. My front-office is http://monacorbally.com, I can´t open a ticket to soopatheme because since augsut no news about this team? Thanks for your support! Regards Link to comment Share on other sites More sharing options...
MrHanz Posted August 26, 2014 Share Posted August 26, 2014 Hallo, I have the same problem with Product Comments v 3.3.7 in Prestashop 1.6.0.8. When I try to add a review, nothing happens. Thank you for your reply. Link to comment Share on other sites More sharing options...
simoneb77 Posted October 5, 2014 Share Posted October 5, 2014 HELP! Using Prestashop version 1.5.4.1 and installed product comments module version 2.5 - didn't work and un-installed it but now my product pages come up blank. Please help ASAP. Link to comment Share on other sites More sharing options...
renovatio Posted October 14, 2014 Share Posted October 14, 2014 For PS 1.5.6.x solution is: Go to modules/productcomments/js/productcomment.js on line 66 replace this: data: $('#id_new_comment_form').serialize(), to this: data: $('#new_comment_form form').serialize(), Solved! Thanks man! Really helped! Link to comment Share on other sites More sharing options...
stullko Posted October 14, 2014 Share Posted October 14, 2014 (edited) Same problem here. If i click on add new comment, nothing happens. Prestashop version 1.6.0.9 Thanks Edited October 14, 2014 by stullko (see edit history) Link to comment Share on other sites More sharing options...
andrei.nicolae19 Posted November 29, 2014 Share Posted November 29, 2014 (edited) The problem with "product comment" module is that when you click on "send" that window doesn't close, no matters how much you click it, but in back-end, if you go at "product comment" module, click "configure" you will see that the data from front office has been sent there and the comments will appear on site ... Does anybody have a solution for this? when a user clicks on "send" the review window to get close automatically? I use prestashop 1.6.0.9 Edited November 29, 2014 by andrei.nicolae19 (see edit history) Link to comment Share on other sites More sharing options...
cille5 Posted March 5, 2015 Share Posted March 5, 2015 Problem: -I click "write review" -Product "write reviw" page opens -Product image on this page is correct, but product description is same on every product (when I'm on write review page) Does anybody got solution to this problem? Presta 1.6.0.9 Product Comments 3.4.0 Link to comment Share on other sites More sharing options...
Christian Rendy Posted March 20, 2015 Share Posted March 20, 2015 I've Got some problem in Product Comment Prestashop 1.6 When i try to make some review,then i press Submit button there nothing happens How to solve it?.i've try any suggestion here but not work properly...Please Help me to solve it Link to comment Share on other sites More sharing options...
amar.prestashop Posted May 25, 2015 Share Posted May 25, 2015 I've solved the problem in PrestaShop v1.5.x First : Follow solution in Github : https://github.com/PrestaShop/PrestaShop/commit/9377775eca428c7022abd4bfa301ef83c8b108b8 ( I use productcomment v3.3.4 and the fix is already done ). Second: Correct the tpl file inside your theme folder modules/productcomments/productcomments.tpl ( as indicate in Github ) Third ( i've lost many time to solve this stupid problem ) : check if inside your theme folder there is a sub-folder named js where there are the javascript of your themes, you can find inside another productcomment/productcomments.js file that override the default js file. So you need to modify this file as suggested in github and the problem could be solved. Regards, Amar Link to comment Share on other sites More sharing options...
Mario_caldera Posted February 20, 2016 Share Posted February 20, 2016 Any new about this issue on 1.6.x.x?? Ive read all your comments guys and all I can say for sure is any of them solves the problem on 1.6.x.x One strange think Ive checked is on pc you just can write "Tittle" and "Comment", but on mobile phone you can write "Tittle", "Comment" and also "Your name". That stuff make me think probably there are more such a Required fields we should be placing on pc? Actually dont know what is the solution, but as some people said before, you make click on "Send" and anything happens. PS: my prestashop version is 1.6.1. Link to comment Share on other sites More sharing options...
Recommended Posts