• Resolved mannjagu

    (@mannjagu)


    how can i remove mini length from message box. i was able to remove from subject with help of your website but didnt find anything for message.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Shamim Hasan

    (@shamim51)

    instead of message_title use message_content

    Thread Starter mannjagu

    (@mannjagu)

    When i add – message_content it gives me error message

    This page isn’t working
    zkweblog.com is currently unable to handle this request.
    HTTP ERROR 500

    Code i have entered

    add_filter( ‘fep_form_fields’, ‘fep_cus_fep_form_fields’ );

    function fep_cus_fep_form_fields( $fields )
    {
    unset( $fields[‘message_title’][‘minlength’] );
    return $fields;
    }

    add_filter( ‘fep_form_fields’, ‘fep_cus_fep_form_fields’ );

    function fep_cus_fep_form_fields( $fields )
    {
    unset( $fields[‘message_content
    ‘][‘minlength’] );
    return $fields;
    }

    Plugin Author Shamim Hasan

    (@shamim51)

    You have added same function name (fep_cus_fep_form_fields) multiple times. Please change function name. You can also add both in same function.

    Thread Starter mannjagu

    (@mannjagu)

    It worked. Thank you so much Shamin.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove mini length from message box’ is closed to new replies.