Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Prevent seller from changing order status.

MultivendorX Pro

Resolved
Viewing 13 reply threads
  • Author
    Posts
    • #188917
      kevajo
      Participant

      Good morning

      We do not want the seller to change order status.
      We want to hide this functionality from the seller.

    • #188937

      Hello Kevajo, in order to restrict vendor to change order status, Go to admin dashboard >> MultiVendorX>> Settings >> Orders , from here enable order status control https://prnt.sc/8QQR66HlC6j8

    • #189178
      kevajo
      Participant

      THANKS.
      It works.
      I also want to prevent sellers from making deliveries.
      Please help me hide delivery on el seller

    • #189203

      Hi can you please share a image on how do you want to stop deliveries, so we can assist you with this.

    • #189221
      kevajo
      Participant
      This reply has been marked as private.
    • #189249

      Hi,
      To remove shipping widget, add below code to your function.php of the active current theme.

      add_filter( 'mvx_before_dashboard_widget', 'new_before_mvx_dashboard_widget', 10, 1 );
      function new_before_mvx_dashboard_widget( $vendor_dashboard_widget ) {
          unset($vendor_dashboard_widget['normal']['mvx_vendor_pending_shipping']);  //remove pending shipping widget
          return $vendor_dashboard_widget;
      }
      Copy

      To remove shipping action from order table, add below code to your function.php of the active current theme.

      //remove ship from dashboard
      add_filter('mvx_vendor_dashboard_order_list_actions', 'mvx_vendor_dashboard_order_list_actions_callback', 10, 2);
      function mvx_vendor_dashboard_order_list_actions_callback($actions, $order_id) {
          unset($actions['mark_ship']);
          return $actions;
      }
      Copy

      To remove bulk action, kindly override dc-woocommerce-multi-vendor/templates/vendor-dashboard/vendor-orders.php template by copying it to yourtheme/MultiVendorX/vendor-dashboard/vendor-orders.php then remove line no 47 to 62.

      Regards,

    • #189250
      kevajo
      Participant

      Thanks you

    • #189252
      kevajo
      Participant

      the shipping widget is no okay but the shipping action works fine, it is hidden.

    • #189254
      kevajo
      Participant
      This reply has been marked as private.
    • #189256
      kevajo
      Participant

      Is no okay .
      see capture

    • #189283

      To remove bulk action, kindly override dc-woocommerce-multi-vendor/templates/vendor-dashboard/vendor-orders.php template by copying it to yourtheme/MultiVendorX/vendor-dashboard/vendor-orders.php then remove line no 47 to 62.

      Regards,

    • #189284
      kevajo
      Participant

      thank you

    • #189289

      Hope your query is solved. If you need any help in future please let us know.

    • #189290
      kevajo
      Participant

      The problem has been solved. Thank you

Viewing 13 reply threads

The topic ‘Prevent seller from changing order status.’ is closed to new replies.