• Resolved amineriad

    (@amineriad)


    Hello,

    How could I limit the number of words that should be inserted in the event description space which is avaiblable in [submit_event_form]?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Rita Kikani

    (@kikanirita)

    Hi @amineriad,

    To validate any event field, we provide hook that you need to use to add extra validation.

    apply_filters( 'submit_event_form_validate_fields', true, $this->fields, $values );

    Using above filter, you can add validation for description field. In $this->fields you will get all fields and in $values you will get values of all fields.

    Thank you.

    Thread Starter amineriad

    (@amineriad)

    Hello,

    How and where can I use this code?

    Plugin Author Rita Kikani

    (@kikanirita)

    Hi,

    You need to prepare function for description validation with the help of your developer and need to put that function and hook in yout parent/child theme functions.php file.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Event description’ is closed to new replies.