• Hi, I would like to have the currency symbol show HK$ instead of $. Please advise.

    Best regards,
    Ben

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • add_filter(‘woocommerce_currency_symbol’, ‘change_existing_currency_symbol’, 10, 2);

    function change_existing_currency_symbol( $currency_symbol, $currency ) {
    switch( $currency ) {

    //CURRENCY CODE EXAMPLE USD//

    case ‘USD’: $currency_symbol = ‘HK$’; break;
    }
    return $currency_symbol;
    }

    Or you could use the simpler Booster module
    WooCommerce All Currencies

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change the currency symbol’ is closed to new replies.