【发布时间】:2020-09-12 02:50:31
【问题描述】:
我们公司订购了 1000 件产品销售的门户交易。
我正在尝试在数量上添加一千个分隔符以使其更易于阅读(而不是打字)。它应该看起来像价格的千位分隔符。 我一直在尝试在我的子主题功能页面中添加一些自定义代码:
// define the woocommerce_quantity callback
function filter_woocommerce_quantity( $quantity, $product ) {
// filter
return number_format($stock_quantity,0,”.”,”,”);
};
// add the filter
add_filter( ‘woocommerce_quantity’, ‘filter_woocommerce_quantity’, 10, 2 );
到目前为止,还没有运气。有什么明显的我做错了,还是这是一个更复杂的问题?
【问题讨论】:
标签: php wordpress woocommerce number-formatting hook-woocommerce