/** * @snippet List of Default Speaker Hooks @ Eventin Single Speaker * @author Themewinter * @updated Eventin WP 2.4.0 **/ // Before content add_action( "etn_speaker_content_before", "etn_before_single_speaker_content", 9 ); add_action( 'etn_before_speaker_archive_content', 'etn_before_speaker_archive_content_show_thumbnail', 10 ); add_action( "etn_speaker_title_before", "speaker_title_before", 10 ); add_action( "etn_speaker_details_before", "speaker_details_before", 16 ); // After content add_action( "etn_speaker_content_after", "etn_after_single_speaker_content", 9 ); add_action( "etn_speaker_title_after", "speaker_title_after", 12 ); add_action( "etn_speaker_details_after", "speaker_details_after", 21 ); // Single content add_action( "etn_single_speaker_template", "etn_single_speaker_template_select", 9 ); add_action( "etn_speaker_designation", "speaker_designation", 13 ); add_action( "etn_speaker_summary", "speaker_summary", 14 ); add_action( "etn_speaker_socials", "speaker_socials", 15 ); add_action( "etn_schedule_time", "schedule_time", 10, 2 ); add_action( "etn_schedule_locations", "schedule_locations", 18, 1 ); add_action( "etn_speaker_topic", "speaker_topic", 19, 1 ); add_action( "etn_speaker_objective", "speaker_objective", 20, 1 ); // All Filters add_filters("etn/speakers/avatar",) add_filters('etn_speaker_title',) Speaker Template Style Two etn_speaker_two_company etn_speaker_two_designation etn_speaker_two_meta etn_speaker_two_social etn_speaker_two_summary etn_speaker_two_sessions_title etn_speaker_two_sessions_details_before etn_speaker_two_sessions_details etn_speaker_two_sessions_details_after Speaker Template Style Two Hooks This is the list of Eventin speaker hooks you can override/remove by simply changing “add_action” to “remove_action” and ”add_filter” in your functions.php. Eventin uses its own hooks e.g. “etn_single_speaker_content_body” to assemble the single speaker page together. Because it’s done this way, you can therefore use “remove_action” to remove one of these elements. /** * @snippet List of speaker style two hooks @ Eventin Single page * @author Themewinter * @updated Eventin WP 2.4.0 **/ // Before content add_action("etn_speaker_two_sessions_details_before", "speaker_two_sessions_details_before" , 16 ); // After content add_action("etn_speaker_two_sessions_details_after", "speaker_two_sessions_details_after" , 22 ); // Single content add_action("etn_speaker_two_company", "speaker_two_company" , 10 ); add_action("etn_speaker_two_designation", "speaker_two_designation" , 11 ); add_action("etn_speaker_two_meta", "speaker_two_meta" , 12 ); add_action("etn_speaker_two_social", "speaker_two_social" , 13 ); add_action("etn_speaker_two_summary", "speaker_two_summary" , 14 ); add_action("etn_speaker_two_sessions_title", "speaker_two_sessions_title", 15 ); add_action("etn_speaker_two_sessions_details", "speaker_two_sessions_details" , 17 , 1 ); add_action("etn_schedule_two_header", "schedule_two_header" , 18 , 2 ); add_action("etn_schedule_two_session_time", "schedule_two_session_time" , 19 , 2 ); add_action("etn_schedule_two_session_title", "schedule_two_session_title", 20 ); add_action("etn_schedule_two_session_location", "schedule_two_session_location" , 21 ); // All Filters add_filters("etn/speakers/avatar",) add_filters('etn_speaker_title',)