VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: dbedlow on August 21, 2014, 17:30:17 PM

Title: Upgrade to 2.6.8 issue/quirk with product page
Post by: dbedlow on August 21, 2014, 17:30:17 PM
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.
Title: Re: Upgrade to 2.6.8 issue/quirk with product page
Post by: jenkinhill on August 21, 2014, 17:44:52 PM
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 />';
    }
}
Title: Re: Upgrade to 2.6.8 issue/quirk with product page
Post by: dbedlow on August 22, 2014, 00:07:19 AM
That's very helpful, thank you.