Is there any way to set a custom Order status for partial refunded order?

后端 未结 1 425
一生所求
一生所求 2021-01-16 20:14

I would like to automatically update my WooCommerce order status to wc-partialRefunded when the order refunded partially.

I have successfully created the custom orde

相关标签:
1条回答
  • 2021-01-16 20:58

    This is what I have used to create a custom order status called "Invoiced". Add this to your theme's functions.php

    // New order status AFTER woo 2.2

    add_action( 'init', 'register_my_new_order_statuses' );
    
    function register_my_new_order_statuses() {
        register_post_status( 'wc-invoiced', array(
            'label'                     => _x( 'Invoiced', 'Order status', 'woocommerce' ),
            'public'                    => true,
            'exclude_from_search'       => false,
            'show_in_admin_all_list'    => true,
            'show_in_admin_status_list' => true,
            'label_count'               => _n_noop( 'Invoiced <span class="count">(%s)</span>', 'Invoiced<span class="count">(%s)</span>', 'woocommerce' )
        ) );
    }
    
    add_filter( 'wc_order_statuses', 'my_new_wc_order_statuses' );
    
    // Register in wc_order_statuses.
    function my_new_wc_order_statuses( $order_statuses ) {
        $order_statuses['wc-invoiced'] = _x( 'Invoiced', 'Order status', 'woocommerce' );
    
        return $order_statuses;
    }
    

    source from :https://wordpress.stackexchange.com/a/199295

    0 讨论(0)
提交回复
热议问题