How do I get my Sales price without tax to display without the line through it? I have a tax listed in my back end, which the customer pays for, so I imagine it has the line through because of the tax. How do I get it to not have the line through unless I have a discount for it?
Here's what I'm talking about with the line through the price: http://www.arizonatacgear.com/store/index.php/component/virtuemart/packs/the-sar-pack-detail?Itemid=0
I also need to change the wording from "Price without tax" to "Sales Price."
In your Joomla template theme you have virtuemart.css containing this style definition:
.productdetails-view .product-box2 span.PricepriceWithoutTax {
color: #505050;
font: 12px/1.2em Arial,Helvetica,sans-serif;
text-decoration: line-through;
}
Remove text-decoration: line-through;
You can change the text string in the VirtueMart language file ( joomla_root/language/en-GB/en-GB.com_virtuemart.ini ), but use a language override so that it does not get overwritten during VirtueMart updates. http://forum.virtuemart.net/index.php?topic=92944.0