• Resolved jygo

    (@jygo)


    Hi, I recently downloaded this plugin, our site is already on-going so there are a lot of orders that is in completed status. However, even though the entire order is already completed, the custom order status per product reflects the status of the product as “unfulfilled”, is there anyway to auto-complete per product status once the entire order is marked as completed?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Dotstore

    (@dots)

    Hello Jygo,

    Thanks for reaching out to us.

    Sorry to say but in our current plugin version there is no feature to make “completed” for completed status.

    But, if you want to change the text “unfulfilled” to any other like ” – ” then you can do it by adding below filter in your themes functions.php file.

    add_filter('default_custom_staus_title', 'default_custom_staus_title_custom', 1);
    
    function default_custom_staus_title_custom($default_title)
    {
        return "-";
    }

    Hope this helps. Let us know still if any.

    Thanks,

    Thread Starter jygo

    (@jygo)

    Oh yes. that will be helpful! thankyou!

    Plugin Author Dotstore

    (@dots)

    Hello there,

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to open a new thread if any other questions come up and we’d be happy to help. ??

    Thanks,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Auto Complete on Completed Orders’ is closed to new replies.