• garimagarg

    (@garimagarg)


    Hello, I want to hide Pending orders from the seller panel. How can i do this?

    I have tried below code but its not working.

    add_filter( ‘wcfm_allowed_order_status’, function( $order_status ) {
    if( isset( $order_status[‘wc-pending’] ) ) unset( $order_status[‘wc-pending’] );
    return $order_status;
    }, 50 , 1);

    Can you please share solution for this?

  • The topic ‘Hide pending Orders’ is closed to new replies.