Jump to content

How to Add space between Currency Symbol and Amount in Prestashop 1.7.6.7


viprem

Recommended Posts

  • 2 months later...

Just change the value in the ps_currency_lang table in the symbol column.

Or you can collectively place a space before the symbol and a space after the symbol for all prices.

UPDATE `ps_currency_lang` SET `symbol` = CONCAT(' ',`symbol`,' ');

 

Link to comment
Share on other sites

8 hours ago, Guest said:

Just change the value in the ps_currency_lang table in the symbol column.

Or you can collectively place a space before the symbol and a space after the symbol for all prices.


UPDATE `ps_currency_lang` SET `symbol` = CONCAT(' ',`symbol`,' ');

 

in which file one should do this?

because I got the same problem

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...