gpt4 book ai didi

php - 将产品自定义字段添加到 WooCommerce 中的管理产品批量编辑表单

转载 作者:行者123 更新时间:2023-12-02 17:16:41 25 4
gpt4 key购买 nike

我在我的 WooCommerce 产品中添加了一个自定义字段,如下问题/答案所示:
Display a custom product field before short description in WooCommerce

是否可以将此自定义字段添加到产品批量编辑特殊页面(可从管理产品列表页面访问)

最佳答案

是的,可以批量编辑自定义字段'_text_field'的产品(如链接的问题/答案中所示)。 p>

您可以在编辑页面的开头或结尾添加此自定义字段。

  • 一开始,您将使用此 Hook :woocommerce_product_bulk_edit_start
  • 最后这个:woocommerce_product_bulk_edit_end

代码(自定义字段位于此处的开头):

// Add a custom field to product bulk edit special page
add_action( 'woocommerce_product_bulk_edit_start', 'custom_field_product_bulk_edit', 10, 0 );
function custom_field_product_bulk_edit() {
?>
<div class="inline-edit-group">
<label class="alignleft">
<span class="title"><?php _e('T. dostawy', 'woocommerce'); ?></span>
<span class="input-text-wrap">
<select class="change_t_dostawy change_to" name="change_t_dostawy">
<?php
$options = array(
'' => __( '— No change —', 'woocommerce' ),
'1' => __( 'Change to:', 'woocommerce' ),
);
foreach ( $options as $key => $value ) {
echo '<option value="' . esc_attr( $key ) . '">' . $value . '</option>';
}
?>
</select>
</span>
</label>
<label class="change-input">
<input type="text" name="_t_dostawy" class="text t_dostawy" placeholder="<?php _e( 'Enter Termin dostawy', 'woocommerce' ); ?>" value="" />
</label>
</div>
<?php
}

// Save the custom fields data when submitted for product bulk edit
add_action('woocommerce_product_bulk_edit_save', 'save_custom_field_product_bulk_edit', 10, 1);
function save_custom_field_product_bulk_edit( $product ){
if ( $product->is_type('simple') || $product->is_type('external') ){
$product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id;

if ( isset( $_REQUEST['_t_dostawy'] ) )
update_post_meta( $product_id, '_text_field', sanitize_text_field( $_REQUEST['_t_dostawy'] ) );
}
}

代码位于事件子主题(或主题)的 function.php 文件中或任何插件文件中。

此代码经过测试并且可以工作。你会得到这个:

enter image description here

关于php - 将产品自定义字段添加到 WooCommerce 中的管理产品批量编辑表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46051525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com