WooCommerce 产品属性 'Custom Product Attribute' 通过 functions.php 更改文本?
WooCommerce product attribute 'Custom Product Attribute' change text via functions.php?
我已将一些自定义产品属性 (CPA) 添加到产品中,并且所有显示都符合预期。主要问题是我想在联系页面(“我们运送到的国家/地区”属性)中添加 link,但我无法通过页面构建器执行此操作。
在其他地方,我使用 add_filter 工具来更改结帐页面等上的文本,但找不到太多关于产品属性,特别是 CPA 的挂钩。谁能帮忙举个例子?
P.S.
请参阅下面的答案以了解解决方案。
一旦你得到朋友的一点帮助就很容易了...
add_filter( 'woocommerce_display_product_attributes', custom_product_additional_information', 10, 2 );
function custom_product_additional_information( $product_attributes, $product ) {
$product_attributes[ 'attribute_' . 'custom-one' ] = array(
'label' => __('Quantity per Package'),
'value' => __('Value 1'),
);
return $product_attributes;
}
再见
我已将一些自定义产品属性 (CPA) 添加到产品中,并且所有显示都符合预期。主要问题是我想在联系页面(“我们运送到的国家/地区”属性)中添加 link,但我无法通过页面构建器执行此操作。
在其他地方,我使用 add_filter 工具来更改结帐页面等上的文本,但找不到太多关于产品属性,特别是 CPA 的挂钩。谁能帮忙举个例子?
P.S.
请参阅下面的答案以了解解决方案。
一旦你得到朋友的一点帮助就很容易了...
add_filter( 'woocommerce_display_product_attributes', custom_product_additional_information', 10, 2 );
function custom_product_additional_information( $product_attributes, $product ) {
$product_attributes[ 'attribute_' . 'custom-one' ] = array(
'label' => __('Quantity per Package'),
'value' => __('Value 1'),
);
return $product_attributes;
}
再见