Title: Hide processing time
Last modified: February 15, 2021

---

# Hide processing time

 *  Resolved [cris123pp](https://wordpress.org/support/users/cris123pp/)
 * (@cris123pp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/hide-processing-time/)
 * How can I hide the processing time that appears on the product edit page? Deactivate
   shipping and it still appears.

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Thread Starter [cris123pp](https://wordpress.org/support/users/cris123pp/)
 * (@cris123pp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/hide-processing-time/#post-14070660)
 * ???
 *  [Big_Birtha](https://wordpress.org/support/users/big_birtha/)
 * (@big_birtha)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/hide-processing-time/#post-14390209)
 * I’d also like to know this – found lots of threads on the old forum for how to
   change the options, but none for how to remove the field altogether.
 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/hide-processing-time/#post-14397937)
 * You have to add this snippet to your site –
 *     ```
       add_filter( 'wcfmmp_product_manager_shipping_processing_fileds', function( $processing_fileds ) {
         if( isset( $processing_fileds['_wcfmmp_processing_time'] ) ) {
         	$processing_fileds['_wcfmmp_processing_time'] = array();
         }
         return $processing_fileds;
       }, 50 );
       ```
   
 * Add custom code(s) to your child theme’s functions.php
    In case you do not have
   child theme then add those using this plugin – https://wordpress.org/plugins/
   code-snippets/
 *  [Big_Birtha](https://wordpress.org/support/users/big_birtha/)
 * (@big_birtha)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/hide-processing-time/#post-14398152)
 * Hi,
 * Thanks, but that didn’t work. Processing Time still appears in the Shipping menu
   of the dashboard and the corresponding message about ‘item will be shipped in
   X days’ appears n the product page.
 * I tried amending your code in case it was the typo of ‘fields’ that was causing
   the issue, but it still didn’t work.
 * > `add_filter( ‘wcfmmp_product_manager_shipping_processing_fields’, function(
   > $processing_fields ) {
   >  if( isset( $processing_fields[‘_wcfmmp_processing_time’])){
   > $processing_fields[‘_wcfmmp_processing_time’] = array(); } return $processing_fields;},
   > 50 );`
 * Please help!
 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/hide-processing-time/#post-14398182)
 * > How can I hide the processing time that appears on the product edit page?
 * I had shared code only for this part.
 * This code has no effect on any other area. Code is perfect, don’t change anything.
 *  [Big_Birtha](https://wordpress.org/support/users/big_birtha/)
 * (@big_birtha)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/hide-processing-time/#post-14398634)
 * This code worked for me:
 * > `add_filter(‘wcfmmp_settings_fields_shipping’, function( $fields, $user_id,
   > $wcfmmp_shipping) {
   >  global $WCFM, $WCFMmp;
   >  if(isset($fields[‘wcfmmp_pt’])){
   >  $fields[‘wcfmmp_pt’] = array(‘required’ => ‘true’);
   >  }
   > return $fields;
   > }, 10, 3);`
 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/hide-processing-time/#post-14398651)
 * This code is for settings section processing time field.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Hide processing time’ is closed to new replies.

 * ![](https://ps.w.org/wc-multivendor-marketplace/assets/icon-256x256.gif?rev=2611991)
 * [WCFM Marketplace - Multivendor Marketplace for WooCommerce](https://wordpress.org/plugins/wc-multivendor-marketplace/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wc-multivendor-marketplace/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wc-multivendor-marketplace/)
 * [Active Topics](https://wordpress.org/support/plugin/wc-multivendor-marketplace/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wc-multivendor-marketplace/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/)

## Tags

 * [dashboard](https://wordpress.org/support/topic-tag/dashboard/)
 * [shipping](https://wordpress.org/support/topic-tag/shipping/)
 * [time](https://wordpress.org/support/topic-tag/time/)
 * [vendor](https://wordpress.org/support/topic-tag/vendor/)

 * 7 replies
 * 3 participants
 * Last reply from: [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/hide-processing-time/#post-14398651)
 * Status: resolved