如何在WooCommerce中为自定义产品类型启用价格和库存

时间:2017-03-30 06:05:18

标签: php wordpress plugins woocommerce hook-woocommerce

我在我的WooCommerce应用程序中创建了一个自定义产品类型

function register_variable_bulk_product_type() {

    class WC_Product_Variable_bulk extends WC_Product_Simple {

        public function __construct($product) {

            $this->product_type = 'variable_bulk';
            parent::__construct($product);
        }

    }

}

add_action('init', 'register_variable_bulk_product_type');

function add_variable_bulk_product($types) {

    $types['variable_bulk'] = __('Variable Bulk');

    return $types;
}

add_filter('product_type_selector', 'add_variable_bulk_product');

这显示了产品数据下拉列表中的产品类型,如下所示,

enter image description here

我的问题是

新产品没有添加库存和价格的选项,如何启用这些选项?

1 个答案:

答案 0 :(得分:4)

  

你需要一个小的JS技巧来显示价格和库存标签,即你   需要在你的情况下添加类show_if_{your_custom_product_type}   将是show_if_variable_bulk

以下是工作代码:

function wh_variable_bulk_admin_custom_js() {

    if ('product' != get_post_type()) :
        return;
    endif;
    ?>
    <script type='text/javascript'>
        jQuery(document).ready(function () {
            //for Price tab
            jQuery('.product_data_tabs .general_tab').addClass('show_if_variable_bulk').show();
            jQuery('#general_product_data .pricing').addClass('show_if_variable_bulk').show();
            //for Inventory tab
            jQuery('.inventory_options').addClass('show_if_variable_bulk').show();
            jQuery('#inventory_product_data ._manage_stock_field').addClass('show_if_variable_bulk').show();
            jQuery('#inventory_product_data ._sold_individually_field').parent().addClass('show_if_variable_bulk').show();
            jQuery('#inventory_product_data ._sold_individually_field').addClass('show_if_variable_bulk').show();
        });
    </script>
    <?php

}

add_action('admin_footer', 'wh_variable_bulk_admin_custom_js');

代码进入您的活动子主题(或主题)的functions.php文件。或者也可以在任何插件PHP文件中。
代码已经过测试并且有效。

这是您的常规标签的外观:

enter image description here

这就是库存标签看起来的方式

enter image description here

希望这有帮助!