Dispay Price Without Currency In Orders Details.tpl

Hi all,

I'm adding an affiliate script in the order details page.

How do I set the following code to display price without currency and span tag?

{include file="common/price.tpl" value=$product.display_subtotal}

Currently it outputs as

RM25.00

I want it to output as 25.00 only

{include file="common/price.tpl" value=$product.display_subtotal}

replace this with {$product.display_subtotal}

if you want in span then replace with {$product.display_subtotal}

Thanks vivekgpt48!

Most Welcome :)