Hi,
can i allow to add comments (product or testimonials) only to registered users?
Thanks
Hi,
can i allow to add comments (product or testimonials) only to registered users?
Thanks
Hello.
can i allow to add comments (product or testimonials) only to registered users?
You can solve your issue following this instruction:
Replace in file the "main_info_title.post.tpl" (design/themes/THEME_NAME/templates/addons/discussion/hooks/products/main_info_title.post.tpl)
this line line:
{__("write_review")}
by this one:
{if $auth.user_id}{__("write_review")}{/if}
then open the "view.tpl" file
(design/themes/THEME_NAME/templates/addons/discussion/views/discussion/view.tpl)
and replace the line:
{if "CRB"|strpos:$discussion.type !== false && !$discussion.disable_adding}
by this one:
{if "CRB"|strpos:$discussion.type !== false && !$discussion.disable_adding && $auth.user_id}
and enjoy the result .
Sincerely yours,
CS-Market team.
Thanks!
We are always happy to help!
how customer can give rating to vendor??
how customer can give rating to vendor??
You can click Comments and reviews addon and uncheck 'Allow to post only for the customers who has bought somethins from the vendor'. Or you can use a customer account to buy from a certain vendor to test the vendor review feature.
By this we can send review.. i want rating..
By this we can send review.. i want rating..
In the addon settings select only Rating
Thank you!! :)
We were glad to help you!