New Landing How can we help? Themeforest Theme Support Neighborhood remove currency with amount

Viewing 2 posts - 1 through 2 (of 2 total)
  • #129049
    member
    Member
    Post count: 49

    Hi,

    Is that possible to remove the currency displayed beside the amount of a product which is listed in shop page. I need only amount to be displayed – dont want to display the currency.

    Thanks

    #129080
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    You’ll need to add this snippet of code to the bottom of your theme’s functions.php:

    add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2);
    
    function add_my_currency_symbol( $currency_symbol, $currency ) {
    
    switch( $currency ) {
    
    case 'USD': $currency_symbol = ''; break;
    
    }
    
    return $currency_symbol;
    
    }

    Thanks
    Mohammad

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register