Is there a way to price all the attributes at once under one option name? I have 35 or so option values, and they each would add $4.00 to the product. Is there a way I can avoid having to price each one individually?
Thanks!
Is there a way to price all the attributes at once under one option name? I have 35 or so option values, and they each would add $4.00 to the product. Is there a way I can avoid having to price each one individually?
Thanks!
This would depend on how you have things setup and whether or not the options_id and options_values_id pair is for a given products_id to make the same price or if "all" options_id and options_values_id pair are the same price regardless of products_id ...
For ALL products_id with ALL options_values_id to be 4.00 you can use:
For ALL products_id with the same pair of options_id and options_values_id you can use:Code:UPDATE products_attributes SET options_values_price = 4.00, price_prefix = '+' WHERE options_id = 12;
For a given products_id you can adapt the code above to be:Code:UPDATE products_attributes SET options_values_price = 4.00, price_prefix = '+' WHERE options_id = 12 and options_values_id = 13;
For ALL products_id with ALL options_values_id to be 4.00 you can use:
For ALL products_id with the same pair of options_id and options_values_id you can use:Code:UPDATE products_attributes SET options_values_price = 4.00, price_prefix = '+' WHERE options_id = 12 and products_id= 27;
NOTE: before attempting any of these, you will want to backup your database ...Code:UPDATE products_attributes SET options_values_price = 4.00, price_prefix = '+' WHERE (options_id = 12 and options_values_id = 13) and products_id= 27;
NOTE: the commands can be run in the Tools ... Install SQL Patches ... from the Zen Cart Admin
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Thank you SO much! It worked. You just made my job a whole lot easier :)
Glad to hear that this worked for you to save you hours and hours and hours of work ... remember us when you are rich and famous ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!