Enable By Default Reviews To Products On Cs-Cart V4.x

Hello,

I need every new product I list to have reviews and comments enabled by default. Is there a way to do this on cs cart 4.X? I found some mixed answers about cs cart 3 and 4 so I am not sure what works and what not.

http://kb.cs-cart.com/enable-reviews

http://forum.cs-cart.com/topic/37114-free-add-on-enable-all-reviews/

john

this is not what I need. I want the reviews to be enabled by default to all new products I add. Any other ideas?

I have a question: I want my products to open in a new page when selected.

Johm Aragon

this is not what I need. I want the reviews to be enabled by default to all new products I add. Any other ideas?

Replace the following part of code:

                {__("communication")} {__("and")} {__("rating")}
                {__("communication")}
                {__("rating")}
                {__("disabled")}
            

with this one:

                {__("communication")} {__("and")} {__("rating")}
                {__("communication")}
                {__("rating")}
                {__("disabled")}
            

in the design/backend/templates/addons/discussion/views/discussion_manager/components/allow_discussion.tpl file.


            

I did that, cleared cache a couple of times but still new products have comments and review disabled by default. Any ideas?

Replace the following part of code:

                {__("communication")} {__("and")} {__("rating")}
                {__("communication")}
                {__("rating")}
                {__("disabled")}
            

with this one:

                {__("communication")} {__("and")} {__("rating")}
                {__("communication")}
                {__("rating")}
                {__("disabled")}
            

in the design/backend/templates/addons/discussion/views/discussion_manager/components/allow_discussion.tpl file.

I did that, cleared cache a couple of times but still new products have comments and review disabled by default. Any ideas?

Try to clear cache manually by renaming the var/cache directory.

Worked! Thank you very much. Should I delete the renamed folder cacheOLD ?

Try to clear cache manually by renaming the var/cache directory.

Worked! Thank you very much. Should I delete the renamed folder cacheOLD ?

Sure, you can delete this folder without any issues

This worked perfectly. Thank you.

Great its work with me also, but how can i change all old 2000 products one time or in short way?

Replace the following part of code:

                {__("communication")} {__("and")} {__("rating")}
                {__("communication")}
                {__("rating")}
                {__("disabled")}
            

with this one:

                {__("communication")} {__("and")} {__("rating")}
                {__("communication")}
                {__("rating")}
                {__("disabled")}
            

in the design/backend/templates/addons/discussion/views/discussion_manager/components/allow_discussion.tpl file.


Great its work with me also, but how can i change all old 2000 products one time or in short way?

Hello!

http://kb.cs-cart.com/enable-reviews

http://forum.cs-cart.com/topic/37114-free-add-on-enable-all-reviews/