Hi @wbbrito ,
To hide the completed order button from the Order Listing page of the Vendor Dashboard, you can try the below Custom CSS,
[data-original-title~=Complete] {
display: none !important;
}
I am afraid we do not have the option to generate an Order Processing Email for the Supplier at this moment. However, we may enhance this in the near future.
Thank you.
Hi @nawaz0705
1 – I did the test with this CSS code but it didn’t work.
Do you have another way that I can try?
I have already hidden other fields, which worked, using this code model.
Example: .dokan-orders-area .dokan-panel .general-details ul.customer-details{
display:none;
}
2 – Do you have any prediction of when they were able to develop (Order Processing E-mail) and make available?
Thanks.
Hello @wbbrito ,
To remove the order action buttons from the order list page, you can use this code in your theme’s functions.php file:
add_filter( 'woocommerce_admin_order_actions', 'dokan_remove_order_action', 50, 2 );
function dokan_remove_order_action( $actions, $the_order ){
unset($actions['complete']);
return $actions;
}
You can request an enhancement for the custom order processing email here: https://github.com/weDevsOfficial/dokan
Also, you post this as a feature request here: https://wedevs.com/account/dokan-feature-requests/
Thank you 🙂
Hi @wbbrito,
Since we haven’t got any further reply from you, so I mark this topic as resolved. If you’ve any further queries, feel free to create a new thread.
Thank you