Show discount with decimals

  • Posts: 45
  • Thank you received: 0
9 years 8 months ago #221735

-- HikaShop version -- : 2.6.0 Business

Hi,

I like to show the discount with two decimals. I use the following code, but this shows the discount without decimals:

<?php
if(isset($row->discount->discount_percent_amount))
	echo (int)$row->discount->discount_percent_amount.'%';
?>

I like to show it, for example, with two decimals like 25,50% instead of just 25%.

Thanks!

Please Log in or Create an account to join the conversation.

  • Posts: 13201
  • Thank you received: 2322
9 years 8 months ago #221743

Hi,

You an use that code:

<?php
if(isset($row->discount->discount_percent_amount))
	echo number_format($row->discount->discount_percent_amount,2,',','').'%';
?>

The following user(s) said Thank You: Squashtoppertje

Please Log in or Create an account to join the conversation.

Time to create page: 0.064 seconds
Powered by Kunena Forum