How to Get the current currency symbol in woocommerce product

Get the Current Currency Symbol in Woocommerce :

get_woocommerce_currency_symbol(); 
<?php 
     $current_currency = get_woocommerce_currency_symbol(); 
     if($current_currency =="Rs.") {
?>		
     <span>For Purchase more than Rs.450</span>
<?php } else { ?>
      <span>For Purchase more than $250</span>
<?php }	?>

 

Leave a Reply

Your email address will not be published. Required fields are marked *