Hi,
As i have mentioned in above link you have to use filter and then you can create any custom fields.
Open up your theme functions.php field and create a function to append a new field to the events section. First hook it in:
add_filter( ‘submit_event_form_fields’, ‘frontend_add_country_field’ );
Then write the function:
function frontend_add_country_field( $fields ) {
$fields[‘event’][‘event_country’] = array(
‘label’ => __( ‘Country ($)’, ‘event_manager’ ),
‘type’ => ‘text’,
‘required’ => true,
‘placeholder’ => ‘e.g. germmany’
);
return $fields;
}
This adds a event text field at the bottom of the events form that has the label “Country”, is required, has no placeholder.
Fields added using the above code will be saved to the event listing automatically.
https://www.wp-eventmanager.com/documentation/adding-new-field-event-submission-form/
During this week, we will launch visual field editor for the admin side so you can create any custom field without writing any code.
I hope that it will help you.