Basic

1: Basic Settings

Go to My Account >> Create Event >> Insert Infomation in some tabs:

1: Name of event

2: Category of event

3: Timezone

  • Setup default Timezone by adding bellow code to functions.php file in child theme

add_filter( 'el_set_timezone_default', function(){  return 'UTC+3'; } );
  • You can remove it by adding bellow code to functions.php file in child theme

add_filter( 'el_show_timezone', '__return_false' );

4: It is custom taxonomy. You can read more here

  • You can remove it go to Events >> Settings >> General >> Total Custom Taxonomy: Insert 0

  • You aslso can remove some custom taxonomy by using code and insert to to functions.php file in child theme

add_filter( 'el_exclude_custom_taxonomy', 'el_exclude_custom_taxonomy_customize' );
function el_exclude_custom_taxonomy_customize(){
    return array( 'slug of custom taxonomy' );
}

Slug of custom taxonomy: Read here

5: Tags

6: Add Images in Description: You can add bellow code in functions.php file child theme

add_filter( 'el_vendor_add_media_content_event', function(){ return true; } );

7: Event Type

  • Setup Default Type: Add bellow code in functions.php file in child theme

// Choose Physical location is default
add_filter( 'el_event_type_default', function(){  return 'classic'; } );

// Choose Online is default
add_filter( 'el_event_type_default', function(){  return 'online'; } );
  • Remove an option: Add bellow code in functions.php file in child theme

// Remove Physical location
add_filter( 'el_show_event_type_physical', '__return_false' );

// Remove Online
add_filter( 'el_show_event_type_online', '__return_false' );

8: Contact Info

9: Feature Image

10: Gallery

11: Video

12: Display Top Banner

2: Customize template

Without use some above filter hook, you can customize template in child theme:

Copy file:
wp-content/plugins/eventlist/templates/vendor/__edit-event-basic.php 
to
wp-content/themes/meup-child/eventlist/vendor/__edit-event-basic.php
and edit code in that file

Last updated