如何更改 WHMCS 价格小数点分隔符?

How to change WHMCS Price Decimal Separator?

我想在 WHMCS 价格中使用其他字符而不是点或逗号(“.”&“,”),尤其是在发票 PDF 中。货币设置只允许您从 4 种预定义格式中进行选择,这不是我需要的。 有人可以告诉我如何改变这个角色吗?还请告诉我应该编辑的文件名,而不仅仅是我不知道应该在哪里插入的一行代码。

非常感谢

我在 WHMCS 社区的 Brian 的帮助下解决了我的问题。这是解决方案:

if we take amount as an example. and say we want to change . to * , we would edit the invoicepdf template and change..

<td align="center">' . $item['amount'] . '</td>

到...

<td align="center">' . str_replace('.','*',$item['amount']) . '</td>

and then you would do the same with any other priced variables in the template, e.g tax, subtotal, total etc.