Support » Plugin: Events Made Easy Frontend Submit » enforce event category Id

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

    (@manu-pb)

    Provisory work around :
    in emefs.php replace

    if ( isset($event_data['event_category_ids']) && !empty($event_data['event_category_ids']) && $event_data['event_category_ids'] != 0 ) { $event_data['event_category_ids'] = (int) esc_attr( $event_data['event_category_ids'] );
    } else {
    $emefs_event_errors['event_category_ids'] = __('Please select an Event Category', 'emefs');
    }

    with :
    $event_data['event_category_ids'] = X;
    Then, you can hide (do not cancel it) the corresponding <div> : <div style=”display:none;” class=”input select”>
    Of course, this will not support updates …

    Plugin Author Franky

    (@liedekef)

    For category enforcing: change the form.php file as mentioned in the doc:

    https://wordpress.org/plugins/events-made-easy-frontend-submit/installation/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘enforce event category Id’ is closed to new replies.