将复选框添加到 WooCommerce 中的产品库存选项卡,并默认选中该复选框

Add checkbox to product inventory tab in WooCommerce and have the checkbox checked by default

我在 中得到了这个片段,用于添加自动设置的复选框自定义字段,并且工作正常。

// Displaying quantity setting fields on admin product pages
add_action( 'woocommerce_product_options_pricing', 'add_custom_field_product_options_pricing' );
function add_custom_field_product_options_pricing() {
  global $product_object;

  echo '</div><div class="options_group">';

  $values = $product_object->get_meta('_cutom_meta_key');

   woocommerce_wp_checkbox( array( // Checkbox.
    'id'            => '_cutom_meta_key',
    'label'         => __( 'Custom label', 'woocommerce' ),
    'value'         => empty($values) ? 'yes' : $values,
    'description'   => __( 'Enable this to make something.', 'woocommerce' ),
   ) );
}

// Save quantity setting fields values
add_action( 'woocommerce_admin_process_product_object', 'save_custom_field_product_options_pricing' );
function save_custom_field_product_options_pricing( $product ) {
$product->update_meta_data( '_cutom_meta_key', isset($_POST['_cutom_meta_key']) ? 'yes' : 'no');
}

我的问题:如何将此复选框移动到库存选项卡上并默认选中该复选框?

我试过改变:

add_action( 'woocommerce_product_options_pricing', 'add_custom_field_product_options_pricing' );

至:

add_action( 'woocommerce_product_options_inventory_product_data', 'add_custom_field_product_options_pricing' );

add_action( 'woocommerce_admin_process_product_object', 'save_custom_field_product_options_pricing' );

至:

add_action( 'woocommerce_process_product_meta', 'save_custom_field_product_options_pricing' );

但无济于事。有什么建议吗?

woocommerce_admin_process_product_object 替换了过时的 woocommerce_process_product_meta 钩子,所以你绝对不应该用它替换它

要默认选中该复选框,您可以将 value 添加到 woocommerce_wp_checkbox()

的参数中

所以你得到:

// Add checkbox
function action_woocommerce_product_options_inventory_product_data() {
    global $product_object;
    
    // Get meta
    $value = $product_object->get_meta( '_cutom_meta_key' );
    
    // Checkbox
    woocommerce_wp_checkbox( array( 
        'id'            => '_cutom_meta_key', // Required, it's the meta_key for storing the value (is checked or not)
        'label'         => __( 'Custom label', 'woocommerce' ), // Text in the editor label
        'desc_tip'      => false, // true or false, show description directly or as tooltip
        'description'   => __( 'Enable this to make something', 'woocommerce' ), // Provide something useful here
        'value'         => empty( $value ) ? 'yes' : $value // Checked by default
    ) );
}
add_action( 'woocommerce_product_options_inventory_product_data', 'action_woocommerce_product_options_inventory_product_data', 10, 0 );
        
// Save Field
function action_woocommerce_admin_process_product_object( $product ) {
    // Update meta
    $product->update_meta_data( '_cutom_meta_key', isset( $_POST['_cutom_meta_key'] ) ? 'yes' : 'no' );
}
add_action( 'woocommerce_admin_process_product_object', 'action_woocommerce_admin_process_product_object', 10, 1 );