• I’m using woocommerce 2.6.14
    A plugin has register a new order status by :

    register_post_status(‘wc-ecpay’, array(‘label’ => ‘new status’,
    ‘public’ => true,
    ‘exclude_from_search’ => false,
    ‘show_in_admin_all_list’ => true,
    ‘show_in_admin_status_list’ => true,
    ‘label_count’ => _n_noop( $this->orderStatus.’ <span class=”count”>(%s)</span>’, $this->orderStatus.’new status shipped<span class=”count”>(%s)</span>’ )
    )

    It works.
    But the orders with this status are missing from the customer order history.
    I would like to show these orders in /wp-content/plugins/woocommerce/templates/myaccount/orders.php
    Deeply thx.

    • This topic was modified 7 years, 10 months ago by oginome.
  • The topic ‘Reg a new order status but missing the order in history’ is closed to new replies.