将自定义字段添加到产品设置发货选项卡,并在WooCommerce的其他信息选项卡上显示值
我试图添加一个&Quantity Per Package&Quantity&Quantity Per Package&Quot;字段到WooCommerce产品,我需要在产品后端的Shipping选项卡中使用这个字段。然后,我需要在"附加信息"选项卡中的"包装尺寸"下显示此数字。
我可以在"其他信息"选项卡中添加一行,但我不知道如何输入值并使其显示该值。
目前我正在使用以下内容,有人可以在路上帮助我吗?
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;
}
解决方案
代码包含:
- 将自定义字段添加到产品发货选项卡
- 保存自定义字段
- 如果不为空,则在其他信息选项卡上显示值
- 通过代码中添加的注释标签进行解释
// Add custom field to product shipping tab
function action_woocommerce_product_options_shipping(){
$args = array(
'label' => __( 'My label', 'woocommerce' ),
'placeholder' => __( 'My placeholder', 'woocommerce' ),
'id' => '_quantity_per_package',
'desc_tip' => true,
'description' => __( 'My description', 'woocommerce' ),
);
woocommerce_wp_text_input( $args );
}
add_action( 'woocommerce_product_options_shipping', 'action_woocommerce_product_options_shipping', 10, 0 );
// Save
function action_woocommerce_admin_process_product_object( $product ) {
// Isset
if( isset($_POST['_quantity_per_package']) ) {
$product->update_meta_data( '_quantity_per_package', sanitize_text_field( $_POST['_quantity_per_package'] ) );
}
}
add_action( 'woocommerce_admin_process_product_object', 'action_woocommerce_admin_process_product_object', 10, 1 );
// Display value on additional Informations tab if NOT empty
function filter_woocommerce_display_product_attributes( $product_attributes, $product ) {
// Get meta
$quantity_per_package = $product->get_meta( '_quantity_per_package' );
// NOT empty
if ( ! empty ( $quantity_per_package ) ) {
$product_attributes[ 'quantity_per_package' ] = array(
'label' => __('Quantity per Package', 'woocommerce '),
'value' => $quantity_per_package,
);
}
return $product_attributes;
}
add_filter( 'woocommerce_display_product_attributes', 'filter_woocommerce_display_product_attributes', 10, 2 );
相关文章