- This topic has 13 replies, 4 voices, and was last updated 3 years ago by
kevajo.
-
AuthorPosts
-
-
March 10, 2023 at 10:26 PM #188917
kevajo
ParticipantGood morning
We do not want the seller to change order status.
We want to hide this functionality from the seller. -
March 11, 2023 at 10:31 AM #188937
Sangita Support Squad
KeymasterHello 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
-
March 11, 2023 at 1:32 PM #189178
kevajo
ParticipantTHANKS.
It works.
I also want to prevent sellers from making deliveries.
Please help me hide delivery on el seller -
March 11, 2023 at 6:06 PM #189203
NerdySupportExpert Moumita
KeymasterHi can you please share a image on how do you want to stop deliveries, so we can assist you with this.
-
March 11, 2023 at 11:23 PM #189221
kevajo
ParticipantThis reply has been marked as private. -
March 13, 2023 at 5:04 PM #189249
MVX Support Ninja
KeymasterHi,
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; }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; }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,
-
March 13, 2023 at 5:06 PM #189250
kevajo
ParticipantThanks you
-
March 13, 2023 at 5:13 PM #189252
kevajo
Participantthe shipping widget is no okay but the shipping action works fine, it is hidden.
-
March 13, 2023 at 5:22 PM #189254
kevajo
ParticipantThis reply has been marked as private. -
March 13, 2023 at 5:40 PM #189256
kevajo
ParticipantIs no okay .
see capture -
March 14, 2023 at 4:35 PM #189283
MVX Support Ninja
KeymasterTo 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,
-
March 14, 2023 at 4:47 PM #189284
kevajo
Participantthank you
-
March 14, 2023 at 7:22 PM #189289
Sangita Support Squad
KeymasterHope your query is solved. If you need any help in future please let us know.
-
March 14, 2023 at 7:23 PM #189290
kevajo
ParticipantThe problem has been solved. Thank you
-
-
AuthorPosts
- The topic ‘Prevent seller from changing order status.’ is closed to new replies.






