• Resolved mahfouz1990

    (@mahfouz1990)


    Hello support,
    thank you for your time.

    i have an issue within make the processing time a required field on add new product page from vendor side

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mahfouz1990

    (@mahfouz1990)

    i did not get any reply yet

    Plugin Author WC Lovers

    (@wclovers)

    add_filter( 'wcfmmp_product_manager_shipping_processing_fileds', function( $processing_fileds ) {
      if( isset( $processing_fileds['_wcfmmp_processing_time'] ) ) {
      	$processing_fileds['_wcfmmp_processing_time']['custom_attributes'] = array( 'required' => true );
      }
      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://www.ads-software.com/plugins/code-snippets/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how i can make the processing time on add new product page as a required field’ is closed to new replies.