cancel
Showing results for 
Search instead for 
Did you mean: 

Product Price

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Product Price

Hi,

 

I just need a advice or guide how to call the product item price and * it 3.65 and show it the converted amount on the right side with the currency as it shown on the screen shot. 

Screenshot 2018-12-08 at 11.39.14.png Can you help me to achieve this. Below is screenshot of my code. 

Screenshot 2018-12-08 at 11.37.09.png

 

Thank you in advance.

1 REPLY 1

Re: Product Price

Hi @kd_bansil,

For this you proceed with step by step 

1) Get the current pricing of the product and multiple the pricing with 3.65.

2) In magento there is an option in admin panel to choose which currency should be shown in the site.
Store currency:
---------------
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$currency = $objectManager->get('Magento\Framework\Pricing\PriceCurrencyInterface');
$currency_symbol = $currency->getCurrency()->getCurrencySymbol();

3) Show price to right side:
-------------------------
<div style="float: right"><?php echo $currency_symbol.$price ?>

If my answer is useful, give kudos & accept as solution

Best regards
Madhuresan
Bootsgrid