Skip to content
Documentation for Plugins
  • Home
  • Support
  • Plugin Docs
Popular Search ticketemailqr codetranslatelocation

Eventin

Event
  • Single Event
  • Event Single Page with Elementor
  • Event Single Page with Oxygen Builder Using Shortcode
  • Event Attendee
  • Adding Attendees Manually(Pro)
  • Recurring Event
  • QR Code for Event Ticket Management(Pro)
  • WooCommerce Coupon for Events
  • Event Speaker & Organizer
  • Event location
  • Event Email Settings
  • Event Schedule
  • Front-end Event Submission (1st Phase)(Pro)
  • Multivendor Event Marketplace(Pro)
  • Certification for Attendee(Pro)
  • Embeddable Script(Pro)
  • Webhooks(Pro)
General Settings
  • General Settings
  • Plugin Installation
  • License
  • Purchaser Dashboard
  • User Roles and Permissions
  • Shortcodes
  • Min/Max Quantity Limit(Pro)
  • Registration and Ticket Selling
  • WooCommerce Deposits Extension Compatibility
  • Translation
  • Plugin Uninstallation
  • Get Support
Integration
  • Oxygen Builder Integration (Pro)
  • Bricks Builder Integration(Pro)
  • DIVI Builder Integration
  • FluentCRM Integration(pro)
  • Groundhogg Integration(Pro)
  • Calendar Integration (Google, Apple etc)
  • Pabbly Integration
  • Twilio SMS Integration
  • Zapier Integration
  • BuddyBoss Integration(Pro)
  • Zoom Module
  • Google Meet(Pro)
Others Settings
  • Calendar View
Payment Type
  • WooCommerce
  • Stripe(Pro)
RSVP Settings(Pro)
  • RSVP General Settings(Pro)
  • Single Event Settings
  • RSVP Invitations
Templates
  • Event Template Override
  • Speaker Template Override
  • Archive Page Override
Visual Seat Map
  • Visual Seat Map

WPCafe

  • Plugin Installation
  • WpCafe Shortcode
  • Multivendor Addon
  • Translation
  • WpCafe Elementor Widgets
  • Searching Products with Pickup/Delivery(Pro)
  • Oxygen Builder Elements
  • User Roles and Permissions
  • Plugin Uninstallation
  • Theme Compatibility
  • Get Support
  • License
Delivery Module(Pro)
  • General
  • Add Food Store’s Location on Google Map(Pro)
  • Google autocomplete address in the checkout(Pro)
  • Minimum order amount to place order(Pro)
Food Ordering
  • General Settings For Location
  • Add New Food Menu
  • Food Ordering with QR code(Pro)
  • Add Food Category and Tag
  • Minicart
  • Tipping (Pro)
  • Discount(Pro)
  • Special Menus(Pro)
  • Live Order(Pro)
  • Pickup (Pro)
  • Delivery (Pro)
  • Order Bumps
  • Product Addons (Pro)
  • Product Addons for Vendor (Pro)
General settings
  • General Settings for Date and Time
  • Slug Change
Integrations
  • FluentCRM Integration
  • Zapier Integration
  • Pabbly Integration
  • Food delivery ( Ship day ) plugin integration
  • Twilio SMS Integration
  • Thermal Printer Integration
  • WooCommerce Clover POS Integration
  • Loyalty Program Points & Rewards for Food Orders
Reservation
  • General Settings for Reservation
  • Form Customization
  • Notification Email
  • Schedule
  • Email Settings
  • Reservation with Food Ordering (PRO)
  • Visual Table Selection
Style Settings
  • Style Settings
WPCafe APP
  • Protected: App Settings
  • Protected: Delivery Time Update
  • Protected: Delivery Man
  • Home
  • Docs
  • Eventin
  • Templates
  • Speaker Template Override

Speaker Template Override

Table of Contents
  • Speaker Template Style One
    • Single Speaker Page Default Hooks
  • Speaker Template Style Two
    • Speaker Template Style Two Hooks
  • Speaker Template Style Three
    • Speaker Template Style Three Hooks
  • Template Override using File

Here’s a visual hook guide for the Eventin Speaker Details Page. This is the part in which you can find eventin speaker hooks quickly and easily by seeing their actual locations (and you can copy/paste).

Now that you know the speaker page hooks, you can override the Eventin Speaker details Page via your child theme’s functions. You can remove default elements (for example, the featured image, add element, schedule…), you can add your custom elements by picking the correct positioned “hook” and triggering your function, and you can even “move” existing elements.

Speaker Template Style One #

etn_speaker_title_before
etn_speaker_title_after
etn_speaker_designation
etn_speaker_summary
etn_speaker_socials

etn_speaker_details_before

etn_schedule_time

etn_schedule_locations

etn_speaker_topic

etn_speaker_objective

etn_speaker_details_after

Single Speaker Page Default 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_event_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 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',)

Speaker Template Style Three #

etn_speaker_three_designation
etn_speaker_three_meta
etn_speaker_three_social

etn_speaker_three_summary

etn_speaker_three_details_before

etn_schedule_three_header

etn_schedule_three_session_time

etn_schedule_three_session_topic

etn_schedule_three_session_location

Speaker Template Style Three 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 three hooks @ Eventin Single Page
 * @author        Themewinter
 * @updated       Eventin WP 2.4.0
 **/

// Before content
add_action("etn_speaker_three_details_before", "speaker_three_details_before" , 15 );

// After content
add_action("etn_speaker_three_details_after", "speaker_three_details_after" , 20 );


// Single content
add_action("etn_speaker_three_designation", "speaker_three_designation" , 10 );
add_action("etn_speaker_three_meta", "speaker_three_meta" , 11 );
add_action("etn_speaker_three_social", "speaker_three_social" , 12 );
add_action("etn_speaker_three_summary", "speaker_three_summary" , 13 );
add_action("etn_schedule_three_header", "schedule_three_header" , 16 );
add_action("etn_schedule_three_session_time", "schedule_three_session_time" , 17 , 2  );
add_action("etn_schedule_three_session_topic", "schedule_three_session_topic" , 18 , 1  );
add_action("etn_schedule_three_session_location", "schedule_three_session_location" , 19 , 1  );

// All Filters
add_filters("etn/speakers/avatar",)
add_filters('etn_speaker_title',)

Template Override using File #

If you want to change something more that may not possible to do with Hooks, you can use the ‘Template‘ override option. Overriding ‘Template’ using a file is similar to ‘Event Template’ overriding. Please click the button and you will get the template overriding documentation.

Event Template Overriding
What are your Feelings
Share This Article :
  • Facebook
  • Twitter
  • LinkedIn
  • Pinterest
Updated on June 19, 2022
Event Template OverrideArchive Page Override
Table of Contents
  • Speaker Template Style One
    • Single Speaker Page Default Hooks
  • Speaker Template Style Two
    • Speaker Template Style Two Hooks
  • Speaker Template Style Three
    • Speaker Template Style Three Hooks
  • Template Override using File
Copyright © 2023 Documentation for Plugins