Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Increase Pricing


deej

Recommended Posts

Posted

I have a shop with INTENSE attribut pricing. I need to increase the costs of my products by 10% across the board. Is there any way to do this besides altering all of my attributes?

Posted

From PHPMyAdmin or your favorite SQL editor

 

run this sql query

 

update `products_attributes` set `options_values_price` = `options_values_price` * 1.1

while (!succeed) {try()};

 

GMT -6:00

Posted
From PHPMyAdmin or your favorite SQL editor

 

run this sql query

 

update `products_attributes` set `options_values_price` = `options_values_price` * 1.1

 

 

I tried this....It worked but in the wrong direction. All of my attributes give quantity pricing. All of the attributes have (-) modifiers, not (+) ones. I need to have less of a negative modifier. This query actually lowered my prices. How do I need to change this query to affect that? THanks...

 

Check out Signexperts.com to see what I'm talking about.

Posted

Try the following (after backing up your dB first)...

update `products_attributes` set `options_values_price` = `options_values_price` * .9

HTH,

Robert

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...