News:

Support the VirtueMart project and become a member

Main Menu

Upgrade to 2.6.8 issue/quirk with product page

Started by dbedlow, August 21, 2014, 17:30:17 PM

Previous topic - Next topic

dbedlow

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.

jenkinhill

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 />';
    }
}
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

dbedlow