Event Detail Template

1: Frontend

2: Customzie via Hook

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_banner', 'el_single_event_banner', 10 );

2: Remove modern Date

Add bellow code in functions.php file in child theme

remove_action( 'el_loop_event_date', 'el_loop_event_date' );

3: Remove Event Name

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_title', 'el_single_event_title' );

4: Remove Date

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_date', 'el_single_event_date' );

5: Remove Address

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_address', 'el_single_event_address' );

6: Remove Booking button

Add bellow code in functions.php file in child theme

remove_action( 'el_single_act_booking', 'el_single_act_booking' );

7: Remove Social Share

Add bellow code in functions.php file in child theme

remove_action( 'el_single_share_social', 'el_single_share_social' );

8: Remove Export

Add bellow code in functions.php file in child theme

remove_action( 'el_single_report', 'el_single_report' );

9: Remove Calendar

Add bellow code in functions.php file in child theme

remove_action( 'el_single_calenda_export', 'el_single_calenda_export' );

10: Remove Description

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_content', 'el_single_event_content' );

11: Remove Ticket Information

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_ticket_info', 'el_single_event_ticket_info' );

11.1 Remove "Discount" in Ticket Information

Add bellow code in functions.php file in child theme:

add_filter( 'el_show_coupon_ticket_single', '__return_false' );

12: Remove Calendar or Schedule Event

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_ticket_calendar', 'el_single_event_ticket_calendar' );

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_gallery', 'el_single_event_gallery' );

Remove Video

remove_action( 'el_single_event_video', 'el_single_event_video' );

14: Remove Rating

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_comment', 'el_single_event_comment' );

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_related', 'el_single_event_related' );

16: Remove Policy

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_policy', 'el_single_event_policy' );

17: Remove Map

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_map', 'el_single_event_map' );

18: Contact Info

18.1 Remove Contact Info Area

Add bellow code in functions.php file in child theme

remove_action( 'el_author_info', 'el_author_info' );

18.2 Remove Phone

Add bellow code in functions.php file in child theme

add_filter( 'el_show_phone_info', '__return_false' );

18.3 Remove Email

Add bellow code in functions.php file in child theme

add_filter( 'el_show_mail_info', '__return_false' );

Add bellow code in functions.php file in child theme

add_filter( 'el_show_website_info', '__return_false' );

18.5 Remove Address

Add bellow code in functions.php file in child theme

add_filter( 'el_show_address_info', '__return_false' );

18.6 Contact Form

Add bellow code in functions.php file in child theme

Remove "Send Message" Button

add_filter( 'el_single_event_show_send_message_btn', '__return_false' );

Customize "Contact Form" in child theme:

Copy file 
plugins/eventlist/templates/author_info.php 
to
themes/meup-child/eventlist/author_info.php

19: Remove Tags

Add bellow code in functions.php file in child theme

remove_action( 'el_single_event_tag', 'el_single_event_tag' );

20: Remove Ads image

Go to Apperance >> Widgets >> Delete widgets in Event Sidebar

3: Customize via file template in child theme

Copy file 
plugins/eventlist/templates/content-single-event.php 
to 
themes/meup-child/eventlist/content-single-event.php 

Customize elements in event detail:

Copy files of elements in
plugins/eventlist/templates/single/*.php 
to 
themes/meup-child/eventlist/single/*.php

Last updated

Was this helpful?