Möchten Sie einfach ein Dropdown mit Text ohne „+ 12,00€“ Anzeige?
Lösung:
Suchen Sie die Datei:
administrator/components/com_virtuemart/models/customfields.php
Zeile 946: $price =“+“.$price;
ändern in:
$price ="".$price;
—
Zeile 951:
else {
$price = ($customPrice === '') ? '' : vmText::sprintf('COM_VIRTUEMART_CART_PRICE_FREE',$currency->getSymbol());
}
return $price;
}
ändern in:
else {
$price = ($customPrice === '') ? '' : vmText::sprintf('COM_VIRTUEMART_CART_PRICE_FREE',$currency->getSymbol());
}
}
—
else {
$price = ($customPrice === '') ? '' : vmText::sprintf('COM_VIRTUEMART_CART_PRICE_FREE',$calculator->_currencyDisplay->getSymbol());
}
return $price;
}
ändern in:
else {
$price = ($customPrice === '') ? '' : vmText::sprintf('COM_VIRTUEMART_CART_PRICE_FREE',$calculator->_currencyDisplay->getSymbol());
}
}
—
Fertig.
Achtung: Dieser manuelle Hack / Override muss nach jedem VM Update wieder eingespielt werden!