fullhouse-web
Hi,
You can try with my tweak below:
1) Go to file:
Comment or remove this snippet of code:
// echo $currency->priceDisplay($product->prices['salesPrice']);
if (!empty($product->prices['salesPrice'])) {
echo $currency->createPriceDiv ('salesPrice', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
}
add this code:
if (!empty($product->prices['basePrice'])) {
echo $currency->createPriceDiv ('basePrice', '', $product->prices, FALSE, FALSE, 1.0, TRUE, true);
}
http://prntscr.com/nfoiap
To change color for price, use this custom css:
.vmproduct .productdetails .product-price .PricebasePrice {
color: #333333;
}
2) You can go to Backend > Components > JA Megafilter > select the filter you're using > Page Options tab > drap the 'Base Price' field to the right: http://prntscr.com/nfoflb
Regards