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.
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/
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!
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.
This code is for settings section processing time field.