我对Woocommerce +“ Yith存入预付款”插件有问题。 该页面显示:
26.997美元 (的 $ 93.980 )
我需要网站显示以下内容:
26.997美元 (的) $ 93.980
这是此部分中的代码:
if( $grand_total ) {
$total_html .= apply_filters( 'yith_wcdp_show_cart_total_html', sprintf( ' (%s <strong>%s</strong>)', __( 'of', 'yith-woocommerce-deposits-and-down-payments' ), wc_price( $grand_total ) ), WC()->cart );
}
任何想法如何解决此问题? 谢谢。
答案 0 :(得分:4)
更新此部分sprintf( ' (%s) <strong>%s</strong>'
尝试此代码
if( $grand_total ) {
$total_html .= apply_filters( 'yith_wcdp_show_cart_total_html', sprintf( ' (%s) <strong>%s</strong>', __( 'of', 'yith-woocommerce-deposits-and-down-payments' ), wc_price( $grand_total ) ), WC()->cart );
}