在woocommerce中添加股票期权

时间:2014-11-13 15:34:09

标签: php wordpress coding-style woocommerce

我想在产品的股票期权下拉列表中添加一个新选项。默认情况下,有“缺货”,“有货”,我想添加第三个选项。

我找到了显示下拉列表的方法(在class-wc-meta-box-product-data.php中)

    // Stock status
    woocommerce_wp_select( array( 'id' => '_stock_status', 'wrapper_class' => 'hide_if_variable', 'label' => __( 'Stock status', 'woocommerce' ), 'options' => array(
        'instock' => __( 'In stock', 'woocommerce' ),
        'outofstock' => __( 'Out of stock', 'woocommerce' )
    ), 'desc_tip' => true, 'description' => __( 'Controls whether or not the product is listed as "in stock" or "out of stock" on the frontend.', 'woocommerce' ) ) );

    do_action( 'woocommerce_product_options_stock_status' );

但我不想直接编辑Woocommerce类,这样我们就可以在不丢失任何自定义代码的情况下更新Woocommerce。有没有办法覆盖这种方法?

2 个答案:

答案 0 :(得分:13)

对于任何感兴趣的人,这里是完整的解决方案,基于Laila的方法。警告!我的解决方案仅适用于禁用WooCommerce “管理库存”选项!我没有使用库存中的确切数量的物品。所有代码都像往常一样转到functions.php

后端部分

删除本机库存状态下拉字段。添加CSS类以区分我的新自定义字段。 Dropdown现在有了新的选项“On Request”。

function add_custom_stock_type() {
    ?>
    <script type="text/javascript">
    jQuery(function(){
        jQuery('._stock_status_field').not('.custom-stock-status').remove();
    });
    </script>
    <?php   

    woocommerce_wp_select( array( 'id' => '_stock_status', 'wrapper_class' => 'hide_if_variable custom-stock-status', 'label' => __( 'Stock status', 'woocommerce' ), 'options' => array(
        'instock' => __( 'In stock', 'woocommerce' ),
        'outofstock' => __( 'Out of stock', 'woocommerce' ),
        'onrequest' => __( 'On Request', 'woocommerce' ), // The new option !!!
    ), 'desc_tip' => true, 'description' => __( 'Controls whether or not the product is listed as "in stock" or "out of stock" on the frontend.', 'woocommerce' ) ) );
}
add_action('woocommerce_product_options_stock_status', 'add_custom_stock_type');

可悲的是, WooCommerce将仅使用其原生功能保存“instock”或“outofstock”值。因此,在完成所有产品数据处理后,我必须重新保存我的库存状态。

function save_custom_stock_status( $product_id ) {
    update_post_meta( $product_id, '_stock_status', wc_clean( $_POST['_stock_status'] ) );
}
add_action('woocommerce_process_product_meta', 'save_custom_stock_status',99,1);

模板部分

最后一件事 - 我必须更改产品get_availability()函数返回的数据。当“管理股票”关闭时,WooCommerce再次只知道“instock”和“outofstock”价值。所以我自己检查了库存状态。

function woocommerce_get_custom_availability( $data, $product ) {
    switch( $product->stock_status ) {
        case 'instock':
            $data = array( 'availability' => __( 'In stock', 'woocommerce' ), 'class' => 'in-stock' );
        break;
        case 'outofstock':
            $data = array( 'availability' => __( 'Out of stock', 'woocommerce' ), 'class' => 'out-of-stock' );
        break;
        case 'onrequest':
            $data = array( 'availability' => __( 'On request', 'woocommerce' ), 'class' => 'on-request' );
        break;
    }
    return $data;
}
add_action('woocommerce_get_availability', 'woocommerce_get_custom_availability', 10, 2);

也许这不是防弹解决方案......我最终会更新它。

答案 1 :(得分:0)

好吧,我最后在Javascript中隐藏了以前的股票期权下拉列表

add_action('woocommerce_product_options_stock_status', 'add_custom_stock_type');    
function add_custom_stock_type() {
        // Stock status - We remove the default one
        ?>
        <script type="text/javascript">
            jQuery('_stock_status').remove();
        </script>
        <?php   
    }

并使用本教程创建了一个新的:http://www.remicorson.com/mastering-woocommerce-products-custom-fields/ 不确定它是最干净的解决方案,但它至少没有触及核心文件! :)