Attribute price modification sign : HOW TO REMOVE?

16.05.2016 22:17
#1
user2
Joomshopping forum user no avatar
Name: user
24.03.2012
Posts: 21
Quote
Attribute price modification sign : HOW TO REMOVE?

Please, explain how to remove Attribute Price modification sign = ?
Where in joomshopping code?
PICTURE IS ATTACHED
Attribute price modification sign : HOW TO REMOVE?


Joomla: 3,5
JoomShopping: 4.10.0
Website Url: http://www.rashentourist.ru/plastikovye/comp1
 
17.05.2016 07:50
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25921
Quote
Aw: Attribute price modification sign : HOW TO REMOVE?

Not possible.
or
change core.
tables/product.php
~row 1164

if ($jshopConfig->attr_display_addprice){
foreach($options as $k2=>$v2){
if (($v2->price_mod=="+" || $v2->price_mod=="-" || $jshopConfig->attr_display_addprice_all_sign) && $v2->addprice>0){
$ext_price_info = " (".$v2->price_mod.formatprice($v2->addprice).")";
$options[$k2]->value_name .=$ext_price_info;
}
}
}


change to

if ($jshopConfig->attr_display_addprice){
foreach($options as $k2=>$v2){
if (($v2->price_mod=="+" || $v2->price_mod=="-" || $jshopConfig->attr_display_addprice_all_sign) && $v2->addprice>0){
$ext_price_info = " (".formatprice($v2->addprice).")";
$options[$k2]->value_name .=$ext_price_info;
}
}
}

 
17.05.2016 16:24
#3
user2
Joomshopping forum user no avatar
Name: user
24.03.2012
Posts: 21
Quote
Aw: Attribute price modification sign : HOW TO REMOVE?

THANK YOU !!!

 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.