Making custom attributes required
-
Hi,
I’m having a hard time making custom attributes required with this function. It works for event_categories but for attributes the warning message appears even if all custom attribute fields are filled in and the user can’t submit the form. Also, is there a way that I can target a specific custom attribute on the form?:
function em_validate_2($result, $EM_Event){ if (!is_user_logged_in() && $_REQUEST['event_attributes'] == ''){ $EM_Event->add_error('All fields are required...'); $result = false; } return $result; } add_filter('em_event_validate','em_validate_2', 1, 2);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Making custom attributes required’ is closed to new replies.