在Woocommerce我的帐户查看订单页面中为自定义状态启用“重新排序”按钮

时间:2018-08-03 17:45:00

标签: php wordpress woocommerce hook-woocommerce orders

我需要在Woocommerce网站上请求报价系统,但找不到与Composite Products插件兼容的任何产品。因此,我将使用“不送货/报价”送货选项和“要求报价付款网关”正常让客户结帐。这样一来,我可以在后端看到报价,批准报价,然后客户可以订购(从技术上对他们的报价进行重新排序)。

我得到了“已完成订单”和“批准报价”的按钮,可以使用以下按钮显示:

/**
 * Add order again button in my orders completed actions.
 *
 * @param  array $actions
 * @param  WC_Order $order
 * @return array
 */
function cs_add_order_again_to_my_orders_actions( $actions, $order ) {
    if ( $order->has_status( 'completed' ) ) {
        $actions['order-again'] = array(
            'url'  => wp_nonce_url( add_query_arg( 'order_again', $order->id ) , 'woocommerce-order_again' ),
            'name' => __( 'Order Again', 'woocommerce' )
        );
    }
    return $actions;
}
add_filter( 'woocommerce_my_account_my_orders_actions', 'cs_add_order_again_to_my_orders_actions', 50, 2 );

/**
 * Add Place order button in my orders quote-approved actions.
 *
 * @param  array $actions
 * @param  WC_Order $order
 * @return array
 */
function cs_add_place_order_to_my_orders_actions( $actions, $order ) {
    if ( $order->has_status( 'quote-approved' ) ) {
        $actions['place-order'] = array(
            'url'  => wp_nonce_url( add_query_arg( 'order_again', $order->id ) , 'woocommerce-place_order' ),
            'name' => __( 'place order', 'woocommerce' )
        );
    }
    return $actions;
}
add_filter( 'woocommerce_my_account_my_orders_actions', 'cs_add_place_order_to_my_orders_actions', 50, 2 );

但是我相信第二个按钮无法正常工作,

if ( ! function_exists( 'woocommerce_order_again_button' ) ) {

    /**
     * Display an 'order again' button on the view order page.
     *
     * @param object $order Order.
     */
    function woocommerce_order_again_button( $order ) {
        if ( ! $order || ! $order->has_status( apply_filters( 'woocommerce_valid_order_statuses_for_order_again', array( 'completed' ) ) ) || ! is_user_logged_in() ) {
            return;
        }

        wc_get_template( 'order/order-again.php', array(
            'order' => $order,
        ) );
    }
}

在woocommerce / includes / wc-template-functions.php

所以我想我只需要在

中添加“ quote-approved”
woocommerce_valid_order_statuses_for_order_again 

数组

我曾尝试使用它:

//Make order again work for Place order , see below

add_filter('woocommerce_valid_order_statuses_for_order_again', function( $statuses ){

    $statuses = wc_get_order_statuses('completed', 'quote-approved');

    return $statuses;

}, 10, 2);

我在这里找到的地方:Woocommerce - Allowing Order Again for different statuses

但是我无法使其正常工作。有人知道我在做什么错吗?任何帮助将不胜感激。谢谢!

1 个答案:

答案 0 :(得分:0)

问题来自wc_get_order_statuses() function that has no arguments,仅给出了所有可用订单状态的索引数组。

相反,您只需要通过以下方式添加自定义订单状态子弹

add_filter( 'woocommerce_valid_order_statuses_for_order_again', 'add_custom_status_for_order_again', 20, 1 );
function add_custom_status_for_order_again( $statuses ){
    $statuses[] = 'quote-approved';

    return $statuses;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。