如何仅针对特定产品在Woocommerce结帐页面中更改文本“结算明细”?
我尝试过:
/* Change the Billing Details checkout label to Your Details: */
function wc_billing_field_strings( $translated_text, $text, $domain )
{
switch ( $translated_text ) {
case 'Billing Details' :
$translated_text = __( 'Your Details', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'wc_billing_field_strings', 20, 3 );
但是它正在更改所有产品的文本……我如何才能针对一种特定产品执行此操作?
答案 0 :(得分:2)
要在购物车中有特定物品时在结帐页面中更改可翻译文本,请使用以下命令:
add_filter( 'gettext', 'change_conditionally_checkout_heading_text', 10, 3 );
function change_conditionally_checkout_heading_text( $translated, $text, $domain ) {
if( $text === 'Billing details' && is_checkout() && ! is_wc_endpoint_url() ){
// HERE set the desired specific product ID
$targeted_product_id = 1980;
// Loop through cart items
foreach( WC()->cart->get_cart() as $cart_item ) {
if( $targeted_product_id == $cart_item['data']->get_id() )
return __( 'Your Details', $domain );
}
}
return $translated;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
注意:在Woocommerce结帐中,要更改的文字是“结算明细”,在“ D etails”中没有大写字母
答案 1 :(得分:0)
首先,覆盖Woocommerce插件模板并在其中进行更改 wp-content / plugins / woocommerce / templates / checkout / form-checkout.php
找到所需的模板并更改文本。