This can be done with a couple custom fields and a little bit of coding
you just have to have custom field positions FOR the discount
I use a custom field "string" to display
"10% Discount on 10 Or More"
But you could use this same to display a price, as well
example code, I used for the image below (it wont work for you without changing it)
<?php foreach ($this->product->customfieldsSorted[$this->position] as $field) {
if ($field->layout_pos == discount10) {
$theprice=$this->product->prices['salesPrice']*.9;
$theprice=number_format($theprice, 2, '.', ',');
echo $field->display.' '.$theprice;
}
}
?>
extra references
http://forum.virtuemart.net/index.php?topic=104194.0http://forum.virtuemart.net/index.php?topic=97419.0
[attachment cleanup by admin]