X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   Adding a Comma (https://forum.x-cart.com/showthread.php?t=78200)

Blainevk 04-01-2021 10:32 AM

Adding a Comma
 
1 Attachment(s)
Hello X-cart 5 Community,

I want to add a comma to a number that I created from the Price of all items in my Mall. See image below for detailed description...



Thanks in advance for your help,
Blaine.

cflsystems 04-01-2021 11:25 AM

Re: Adding a Comma
 
You can use the PHP format_number


https://php.net/manual/en/function.number-format.php


If it doesn't work directly in the twig file set new method to use it and return the formatted value

Blainevk 04-01-2021 02:33 PM

Re: Adding a Comma
 
Thanks Steve,

But this is all GREEK to me, how much would you charge me to make this work?

cflsystems 04-01-2021 07:18 PM

Re: Adding a Comma
 
You just have to do what you already did but use the format_number function.
Where you added {{ (this.getListPrice() * 1000) +0 }} replace it with

{{ format_number($this.getListPrice() * 1000) }}

The function uses as default 0 decimals, dot as decimal separator and comma as thousands separator so the above will effectively return

123,450 (if list price is say $123.45)


Doing this with php method to use in the twig file will require you to have custom module and define the method to use which will essentially do the same.
I can code this for you if you want to but I just don't see the need for it when you can replace it within the template with the code I provided here, just like you already did with your own version.


However if you don't feel like doing this or want to expand on it you can contact me with details and I can get it done for you. Just open a ticket at support.cflsystems.com

Blainevk 04-03-2022 05:05 PM

Re: Adding a Comma
 
Steve,

(Sorry I NEVER received an email that you answered my question, it wasn't until today that I was looking at the forum and discovered your answer)

So, I tried replacing the old with yours... {{ format_number($this.getListPrice() * 1000) }}

but it does not seem to work...

I GET THIS ERROR...

Unexpected character "$" in "theme_tweaker/customer/modules/XC/ProductVariants/price_range.twig" at line 8.

Then I deleted the "$" and tried saving it agein, then I get this error...

Unknown "format_number" function in "theme_tweaker/customer/modules/XC/ProductVariants/price_range.twig" at line 8.

In case it makes a difference or you didn't notice, I'm using MultivenderXC5

cflsystems 04-04-2022 04:49 AM

Re: Adding a Comma
 
Sorry should be "number_format" and yes there is no $

Blainevk 04-05-2022 09:14 AM

Re: Adding a Comma
 
Hi Steve,

Sorry, but "number_format" does not work?

ERROR:
Unknown "number_format" function in "theme_tweaker/customer/common/price_parts/price.twig" at line 3.

cflsystems 04-06-2022 08:11 AM

Re: Adding a Comma
 
Apparently you cannot call php functions directly in twig files. You can try this as modifier



{{ ($this.getListPrice() * 1000)|number_format() }}

Blainevk 04-09-2022 11:31 AM

Re: Adding a Comma
 
Hi Steve,

I held my breath, clicked SAVE... and IT WORKED!!!!!!!

Thanks so much, you were the only one who took the time to help me "add a comma", I've been trying off & on for over 2 years to add a simple comma, which turned out to be not so simple. LOL

Check it out: https://blainestravelclub.com/travelpoints/giftmall/

cflsystems 04-11-2022 03:18 AM

Re: Adding a Comma
 
Good to know it finally worked for you


All times are GMT -8. The time now is 03:10 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.