Edit Return default to 30 days?

Do anybody know how I may change the default value for the Return from 10 days to 30 days? I’m changing my return policy, and I would like to make 30 days as the deafult for all new products.

You will need to edit the table cscart_products in the database. Under the field name return_period you need to change the default from 10 to 30.



To change all of your existing products from 10 to 30, run this sql query:


UPDATE `cscart_products` SET `return_period` = '30' ;

Does this fix apply to 1.3.5 SP4? Thanks.

Yes, it does.

Thank you sir :wink:

Thanks, that did it. :slight_smile: Maybe this is something that CS-Cart could have made customizable in the admin area?

[quote name=‘eplebiten’]Thanks, that did it. :slight_smile: Maybe this is something that CS-Cart could have made customizable in the admin area?[/QUOTE]

Add this as a Feature Request in the Bug Tracker (link at top of page) if you would like this to be added in a future release. You gotta let them know what you want.



Bob

Hello The Tool,


[quote name=‘The Tool’]You will need to edit the table cscart_products in the database. Under the field name return_period you need to change the default from 10 to 30.



To change all of your existing products from 10 to 30, run this sql query:


UPDATE `cscart_products` SET `return_period` = '30' ;[/QUOTE]



Thank you, works fine with CSC 2.1.2 :wink:





Lee Li Pop