How to different currency symbol in pricing Table

  • ** Currently i want to display HK$ instead of just as i am based in Hong Kong and do not want people to be confused with the as this can represent US dollars in stead of HK$ is there a way by code or css that i can Change the display value from to HK **

  • Link to the page with the widget in question:

1 Like

Hi there and welcome to the Community @Support_SJ :wave:

No problem! This code should do the trick for you:

.eapps-pricing-table-column-price-currency {
	visibility: hidden;
}

.eapps-pricing-table-column-price-currency::after {
	content: 'HK$';
	display: inline-block;
    visibility: visible;
}

Just add it to the Custom CSS field on the Appearance tab of your widget’s settings and let me know if it helped :wink:

Ignore my last message. I got it to work

Thank you very much

1 Like

Awesome!

If anything else comes up, feel free to contact us here. We’ll be delighted to help :slightly_smiling_face:

Hi Max,

what about a pricerange? If I have “XX CHF - XX CHF” but want it in “CHF XX - CHF XX”.
I treid your code but it adds just and CHF before the whole pricerange.

1 Like

Hi there, @Besfort_Rexhahmetaj :waving_hand:

Now you don’t have to use a CSS code for this. You just should choose a Custom Pricing Model and add the price in the required format manually:


Please check it out and let me know if it helped :wink: