Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 wp all import 来导入产品。我所有的价格都用逗号而不是小数点(。)。当我使用条件获取价格低于 11,5 的所有产品时,它返回零结果。它无法识别逗号。
这是 2 年前的旧帖子,但可能有人正在寻找解决方案。因此,您可以在常规价格(或您想要放置此价格值的任何位置)中添加自定义函数。例如,添加以下代码:
[check_price({column_of_your_csv[1]})]
在函数编辑器选项卡中,您可以编写以下代码:
function check_price($avail) { $price = str_replace(",",".",$avail); return $price; }
未经测试,但它应该工作!