• Resolved wbbrito

    (@wbbrito)


    Hi,

    I would like help in some points of the plugin.

    1 – How do I hide the completed order button from the order screen?
    Even if I disable the supplier’s option to change the order status, it still appears.

    2 – I need an email configuration for the supplier when the order is approved. Currently, you only have the option when the order is generated, even though it has not yet been approved by the credit card.

    Thanks

    Question 1

    Question 2

Viewing 4 replies - 1 through 4 (of 4 total)
  • 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.

    Thread Starter wbbrito

    (@wbbrito)

    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

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Customize Vendor Dashboard’ is closed to new replies.