Shipping Processing Time Customization

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 4 reply threads
  • Author
    Posts
    • #108563
      khuaneng.khor
      Participant

      May i know how to customize the processing time in shipping?
      [product>shipping]
      I would like to show only ‘1-2 days’, ‘3-5 days’ and ‘6-7 days’.

      Attachments:
      You must be logged in to view attached files.
    • #109377
      khuaneng.khor
      Participant

      Hi, any solution?

      What if i want to hide or disbale the processing time? As i don’t allow my vendor to spend more than 7days in processing the order. To avoid fraud case.

    • #109830
      WCFM Forum
      Keymaster

      Hi,

      Please add this code to your site for the purpose-

      add_filter( 'wcfmmp_shipping_processing_times', function( $processing_times ) {
      	$processing_times = array(
      															'' => __( 'Ready to ship in...', 'wc-multivendor-marketplace' ),
      															'1' => __( '1-2 days', 'wcfm-ecoeats' ),
      															'2' => __( '3-5 days', 'wcfm-ecoeats' ),
      															'3' => __( '6-7 days', 'wcfm-ecoeats' ),
      													);
      	return $processing_times;
      }, 50 );

      Add this code to your child theme’s functions.php
      In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      Thank You

    • #109913
      khuaneng.khor
      Participant

      Thanks!

    • #109921
      WCFM Forum
      Keymaster

      You are welcome 🙂

Viewing 4 reply threads
  • You must be logged in to reply to this topic.