I've just upgraded to version 2.6.8 from 2.6.6.
On the product page, I set the system up just to show the price of each product (including tax) and changed the label using the language override to just read 'Price:'. However, since upgrading, the product price now also shows 'With shipment Delivery: Online for £0.00' above the Price label.
The update doesn't seem to have made any changes to the options on the pricing section of the configuration page in the backend and I can't see the new wording in the language overrides either. Does anyone know how I can get rid of this additional wording? Thanks.
This feature was requested by many VM users. A switch has not yet been provided. When I don't need it ATM I comment out or remove the code from components/com_virtuemart/views/productdetails/tmpl/default.php and use the edited fille as a template override.
if (is_array($this->productDisplayShipments)) {
foreach ($this->productDisplayShipments as $productDisplayShipment) {
echo $productDisplayShipment . '<br />';
}
}
if (is_array($this->productDisplayPayments)) {
foreach ($this->productDisplayPayments as $productDisplayPayment) {
echo $productDisplayPayment . '<br />';
}
}
That's very helpful, thank you.