Lee Well-known member Jun 7, 2021 #1 Is there a way I can apply xenforo's number formatting to a custom profile field that I have manually inserted in to a template?
Is there a way I can apply xenforo's number formatting to a custom profile field that I have manually inserted in to a template?
P Paul B XenForo moderator Staff member Jun 7, 2021 #2 How are you outputting the content? You can use a filter: {$var|number} or {$var|number_short}. Alternatively, you can use a function: {{ number($var) }} or {{ number_short($var) }} The output is the same so it's just personal preference. Upvote 0 Downvote
How are you outputting the content? You can use a filter: {$var|number} or {$var|number_short}. Alternatively, you can use a function: {{ number($var) }} or {{ number_short($var) }} The output is the same so it's just personal preference.