- Posts: 14116
- Thank you received: 1639
How to show PRICE VAT INCLUDED in mod vmscroller
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
10 years 11 months ago #38781
by ivan.milic
Replied by ivan.milic on topic How to show PRICE VAT INCLUDED in mod vmscroller
Ok just replace it
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 11 months ago #38782
by ivan.milic
Replied by ivan.milic on topic How to show PRICE VAT INCLUDED in mod vmscroller
For not hard-coding currency value (while if - else block):
Code:
if ($show_price) {
$price = $pr->prices['salesPrice'];
$db->setQuery("SELECT REPLACE(REPLACE(C.currency_positive_style,'{symbol}',C.currency_symbol ),'{number}',cast(".$price." as decimal(19,2))) As pricetext
FROM
#__virtuemart_product_prices as P
LEFT JOIN
#__virtuemart_currencies as C on C.virtuemart_currency_id = P.product_currency
WHERE P.virtuemart_product_id = '" . $product_id . "' LIMIT 1 ");
$price_object = $db->loadObject();
$price = '<div class="productPrice">'.$price_object->pricetext.'</div>';
}
else $price='';
The following user(s) said Thank You: corber64
Please Log in to join the conversation.
Time to create page: 0.094 seconds