Hello
I have problem.
I created custom field named "red" and I had put a price to it "15 $". When I enter into my page in my custom field I have such expression " red + 15 $".
I dont want this " + " . Is it possible to somehow delete this "+". I want to have such expression " red 15 $"
I created an unique page and this "+" is not compatible with my page.
Maybe someone know in which file is this "+". I looked for him long hours, because I wanted to deleate, but I cant find.
I put this post in another section, but I think that this section is better for this, sorry.
Took a bit of finding!
administrator/componenets/com_virtuemart/models/customfields.php
static function _getCustomPrice($customPrice, $currency, $calculator) {
if ((float)$customPrice) {
$price = strip_tags ($currency->priceDisplay ($calculator->calculateCustomPriceWithTax ($customPrice)));
if ($customPrice >0) {
$price ="+".$price;
}
static function _getCustomPrice($customPrice, $currency, $calculator) {
if ((float)$customPrice) {
$price = strip_tags ($currency->priceDisplay ($calculator->calculateCustomPriceWithTax ($customPrice)));
if ($customPrice >0) {
$price = $price;
}
do you need = price?
http://www.kaizenmediaworks.com/virtuemart-2-0-custom-field-dropbox-plugin
I like your thinking!
Thank You all!
It works perfect.
:)