在WooCommerce

时间:2017-09-05 09:27:04

标签: php wordpress woocommerce custom-fields product

我在我的WooCommerce产品中添加了一个自定义字段,例如:/ Display a custom product field before short description in WooCommerce

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

2 个答案:

答案 0 :(得分:3)

是的,您可以批量修改自定义字段 '_text_field' 的产品(如在您的关联问题/答案中)

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

  • 首先,您将使用此挂钩: 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

答案 1 :(得分:0)

是的,这是可能的,没有任何钩子和代码:

  • 安装插件WooCommerce批量编辑器(WOOBE):https://wordpress.org/plugins/woo-bulk-editor/
  • 转到Meta Fields选项卡并在其中添加元键,按“保存”按钮
  • 在标签设置中,使用新的元键激活列
  • 使用标签批量修改执行操作

这就是全部:)

P.S。 docs:https://bulk-editor.com/document/meta-fields/