作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们公司订购了 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 );
到目前为止,还不是运气。有什么明显的地方我做错了吗,或者这是一个更复杂的问题?
最佳答案
要用千位分组格式化数字
参数
通过以下代码,调整结账页面的数量显示
function filter_woocommerce_checkout_cart_item_quantity( $item_qty, $cart_item, $cart_item_key ) {
// Get quantity
$cart_item_quantity = $cart_item['quantity'];
// Format
$cart_item_quantity = number_format($cart_item_quantity, 0, ',', ' ');
// Output
$item_qty = '<strong class="product-quantity">' . sprintf( '× %s', $cart_item_quantity ) . '</strong>';
// Return
return $item_qty;
}
add_filter( 'woocommerce_checkout_cart_item_quantity', 'filter_woocommerce_checkout_cart_item_quantity', 10, 3 );
关于php - 在 WooCommerce 中为产品数量添加千位分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63856371/
我正在使用报表查看器控件 (rdlc) 生成报表。我的一列表示来自 SQL 数据库的十进制值,例如: 5199.9800 在此列的末尾,汇总了所有金额。因此,金额行以这种方式表示: =Fields!
我在这段代码中尝试用以下模式替换引号 (') 的千位分隔符 (.):###'###,## import java.text.*; public class NumberFormatTests
对于具有财务计算的网站,我尝试将包含在 HTML 输入字段中的每个数字转换为 xxx,xxx,xxx.xx 格式,其中千位分隔符为逗号,小数点为小数点。与我们从 Excel 中了解到的类似。 现在是挑
有没有一种方法可以使用字符串格式化程序将 Thousands、Millions、Billions 格式化为 123K、123M、123B 而无需更改代码以将值除以 Thousand、Million 或
我是一名优秀的程序员,十分优秀!