mhmdshv Posted May 3, 2015 Share Posted May 3, 2015 Hi I'm searching for a module, or a trick, so that viewers can rate products without having to fill the form and leave a comment. just choose a rate, and there we go. Is there any module that can do this? or maybe some modifications in the original product comments module to enable such feature? thanks for any help! Link to comment Share on other sites More sharing options...
NemoPS Posted May 4, 2015 Share Posted May 4, 2015 I'm just guessing here, but try this: 'content' => array('type' => self::TYPE_STRING, 'validate' => 'isMessage', 'size' => 65535, 'required' => true), remove required => true, it's in modules/productcomments/ProductComment.phpp.s. I didn't test it Link to comment Share on other sites More sharing options...
mhmdshv Posted May 4, 2015 Author Share Posted May 4, 2015 thank you. that almost worked. the only problem is that you still have to click on 'send' button, to confirm the rating. any way to remove that? Link to comment Share on other sites More sharing options...
NemoPS Posted May 6, 2015 Share Posted May 6, 2015 Javascript Bind something to that star click so it submits the form, like $('.star').click(function(){$('#myform').submit()}); Link to comment Share on other sites More sharing options...
mhmdshv Posted May 7, 2015 Author Share Posted May 7, 2015 Cool. I applied a 'submit' to every star,and now it's working. Thank you! Link to comment Share on other sites More sharing options...
Recommended Posts