Hide specific order status options for vendors

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 1 reply thread
  • Author
    Posts
    • #80207
      fdeckers
      Participant

      Hi,

      How can I disable the option for vendors to change the order status to ‘Payment pending’ after a succesful payment (via iDEAL)?

    • #80372
      WCFM Forum
      Keymaster

      Hi,

      Please add this code to your site –

      add_filter( 'wcfm_allowed_order_status', function( $order_statuses, $order_id ) {
      	if( wcfm_is_vendor() && isset( $order_statuses['wc-pending'] ) ) {
      		$order = wc_get_order( $order_id );
      		if( is_a( $order, 'WC_Order' ) ) {
      			$status = $order->get_status();
      			if( $status != 'pending' ) {
      				unset( $order_statuses['wc-pending'] );
      			}
      		}
      	}
      	return $order_statuses;
      }, 50, 2 );

      Add this code to your child theme’s functions.php
      In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      Thank You

Viewing 1 reply thread
  • You must be logged in to reply to this topic.