Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › Shipping Processing Time Customization
Tagged: processing time
- This topic has 4 replies, 2 voices, and was last updated 4 years, 8 months ago by WCFM Forum.
Viewing 4 reply threads
- AuthorPosts
- February 24, 2020 at 8:32 pm #108563khuaneng.khorParticipant
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. - March 1, 2020 at 7:31 am #109377khuaneng.khorParticipant
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.
- March 4, 2020 at 12:34 pm #109830WCFM ForumMember
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
- March 4, 2020 at 2:49 pm #109913khuaneng.khorParticipant
Thanks!
- March 4, 2020 at 2:56 pm #109921WCFM ForumMember
You are welcome 🙂
- AuthorPosts
Viewing 4 reply threads
- You must be logged in to reply to this topic.