Hide short description

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 3 reply threads
  • Author
    Posts
    • #17925
      info17
      Participant

      hi:)
      i like to hide “short descripton” when creating product/appointable. i only use normal description and not a short one to 🙂
      when possible via css.. how i get this..
      thank you

    • #17932
      WCFM Forum
      Keymaster

      Hi,

      Kindly use this code for the purpose –

      function wcfm_custom_product_manage_fields_content( $content_fields, $product_id, $product_type ) {
      	if( isset( $content_fields['excerpt'] ) ) { 
      		unset( $content_fields['excerpt'] );
      	}
      	return $content_fields;
      }
      add_filter( 'wcfm_product_manage_fields_content', 'wcfm_custom_product_manage_fields_content', 50, 3 );

      Please know me is this works for you or not!

      Thank You
      Simha

    • #17934
      info17
      Participant

      works perfect:):) thanks men.

    • #17945
      WCFM Forum
      Keymaster

      Great!! Welcome 🙂

Viewing 3 reply threads
  • The topic ‘Hide short description’ is closed to new replies.