- Posts: 4
- Thank you received: 0
Currency Exchange and virtuemart scroller price wi
-
Manfredi
Inactive member - Topic Author
- New Member
Less
More
10 years 9 months ago #37911
by Manfredi
Currency Exchange and virtuemart scroller price wi was created by Manfredi
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 9 months ago #37921
by ivan.milic
Replied by ivan.milic on topic Currency Exchange and virtuemart scroller price wi
It takes setting form product currency settings.
In module folder in helper.php:
In module folder in helper.php:
Code:
if ($show_price) {
$db->setQuery("SELECT REPLACE(REPLACE(C.currency_positive_style,'{symbol}',C.currency_symbol ),'{number}',cast(P.product_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 = $pr->prices['salesPrice'];
$price = '<div class="productPrice">'.$price_object->pricetext.'</div>';
}
The following user(s) said Thank You: Manfredi
Please Log in to join the conversation.
-
Manfredi
Inactive member - Topic Author
- New Member
Less
More
- Posts: 4
- Thank you received: 0
10 years 9 months ago #37925
by Manfredi
Replied by Manfredi on topic Currency Exchange and virtuemart scroller price wi
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 9 months ago #37938
by ivan.milic
Replied by ivan.milic on topic Currency Exchange and virtuemart scroller price wi
Next to "Cost price" in product edit screen you have parameter to chose currency.
Did you maybe add color attribute twice?
Did you maybe add color attribute twice?
The following user(s) said Thank You: Manfredi
Please Log in to join the conversation.
Time to create page: 0.158 seconds