Wordpress 商业购物车页面中的括号有问题

Wordpress 商业购物车页面中的括号有问题,wordpress,woocommerce,Wordpress,Woocommerce,我对Woocommerce+的“Yith存款和首付”插件有问题。 页面显示: 26.997美元 (关于 $93.980 ) 我需要网站显示以下内容: 26.997美元 (of) 93.980美元 这是本部分的代码: if( $grand_total ) { $total_html .= apply_filters( 'yith_wcdp_show_cart_total_html', sprintf( ' (%s <strong>%s</strong>

我对Woocommerce+的“Yith存款和首付”插件有问题。 页面显示:

26.997美元 (关于 $93.980 )

我需要网站显示以下内容:

26.997美元 (of) 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 );
            }
if($grand_总计){
$total_html.=应用_过滤器('yith_wcdp_show_cart_total_html',sprintf('(%s%s),'uuuuu('of','yith woo商业押金和首付款'),wc_价格($grand_total)),wc()->cart);
}
你知道怎么解决这个问题吗?
谢谢。

更新此部分
sprintf(“(%s)%s

试试这个代码

 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 );
            }
if($grand_总计){
$total_html.=应用_过滤器('yith_wcdp_show_cart_total_html',sprintf('(%s)%s',uuu('of','yith woo商业押金和首付款'),wc_价格($grand_total)),wc()->cart);
}

如果您的问题解决了,请接受答案。太好了!非常感谢您,我的朋友!