【发布时间】:2019-12-20 18:53:33
【问题描述】:
我想隐藏小数,因为用 g 表示重量并且显示小数似乎没有必要。 woocommerce的wc-formatting-functions.php的功能:
/**
* Format a weight for display.
*
* @since 3.0.0
* @param float $weight Weight.
* @return string
*/
function wc_format_weight( $weight ) {
$weight_string = wc_format_localized_decimal( $weight );
if ( ! empty( $weight_string ) ) {
$weight_string .= ' ' . get_option( 'woocommerce_weight_unit' );
} else {
$weight_string = __( 'N/A', 'woocommerce' );
}
return apply_filters( 'woocommerce_format_weight', $weight_string, $weight );
}
关于如何更改重量显示方式的任何想法?也许我应该通过 CSS 做到这一点?
【问题讨论】:
标签: wordpress woocommerce