Event Listing Template

Add hook code to functions.php file in child theme

1: Remove Thumbnail

remove_action( 'el_loop_event_thumbnail', 'el_loop_event_thumbnail' );

2: Remove Author image

remove_action( 'el_loop_event_author', 'el_loop_event_author' );

3: Remove Category

remove_action( 'el_loop_event_cat', 'el_loop_event_cat' );
remove_action( 'el_loop_event_cat_3', 'el_loop_event_cat_3' ); // available in version 1.2.1

4: Remove Title

remove_action( 'el_loop_event_title', 'el_loop_event_title' );

5: Remove Price

remove_action( 'el_loop_event_price', 'el_loop_event_price' );

6: Remove Date

remove_action( 'el_loop_event_time', 'el_loop_event_time' );
remove_action( 'el_loop_event_date', 'el_loop_event_date' );
remove_action( 'el_loop_event_date_4', 'el_loop_event_date_4' );

7: Remove Location

remove_action( 'el_loop_event_location', 'el_loop_event_location' );

8: Remove Rating

remove_action( 'el_loop_event_ratting', 'el_loop_event_ratting' );

9: Remove Button

remove_action( 'el_loop_event_button', 'el_loop_event_button' );

10: Remove favourite

remove_action( 'el_loop_event_favourite', 'el_loop_event_favourite' );

11: Remove status

remove_action( 'el_loop_event_status', 'el_loop_event_status' );

12: Remove Share

remove_action( 'el_loop_event_share', 'el_loop_event_share' );

Last updated