1. Home
  2. Knowledge Base
  3. Account Funds for WooCommerce
  4. How to Hide the Currency Symbol in Account Funds for WooCommerce

How to Hide the Currency Symbol in Account Funds for WooCommerce

Account Funds displays your store’s currency symbol next to fund balances throughout WooCommerce:

  • in the My Account area,
  • at checkout,
  • and in the admin.

This works well for most stores, but some businesses use Account Funds as a credit or rewards system where showing a currency symbol doesn’t make sense.

If you’re running a points program, internal credit system, or workshop credits where the funds don’t directly represent money, you may want to hide or replace the currency symbol entirely.

Before You Customize: Let Us Know

If you’re looking to hide the currency symbol because you’re using Account Funds as a points or credits system, we’d love to hear from you. We’re actively developing a native Points System for Account Funds that will handle this use case properly. Custom labels, point terminology, and display options built in.

Contact our support team to share your use case. We’ll add you to the notification list for the Points System release, and your feedback helps us build exactly what store owners need.

How to Hide the Currency Symbol

Until the Points System is available, you can hide the currency symbol using CSS. Add this code to your theme’s stylesheet or through the WordPress Customizer under Additional CSS:

/* Hide currency symbol in Account Funds displays */
tr.account-funds .woocommerce-Price-currencySymbol {
    display: none;
}

.woocommerce-MyAccount-account-funds .woocommerce-Price-currencySymbol {
    display: none;
}

This CSS targets the currency symbol in the My Account funds display and the account funds row in WooCommerce tables. The actual balance number remains visible.

What This Affects

This CSS hides the currency symbol in the following locations:

  • The Account Funds section on the My Account page
  • Account Funds balance rows in WooCommerce tables

Note that this approach only hides the symbol visually—it doesn’t change how funds are stored or calculated. If you need more comprehensive customization, such as replacing the currency symbol with custom text like “credits” or “points,” the upcoming Points System will be the better solution.

Coming Soon: Native Points System

We’re building a proper Points System into Account Funds that will let you:

  • Replace currency symbols with custom labels (points, credits, tokens, etc.)
  • Display balances without any monetary formatting
  • Configure point terminology throughout your store

If you’d like to be notified when this feature becomes available, reach out to our support team and let us know you’re interested.

Was this article helpful?

Related Articles