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
  • Protected: 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
Others Settings
  • Calendar View
Payment Type
  • WooCommerce
  • Stripe(Pro)
RSVP Settings
  • RSVP General Settings(Pro)
  • Single Event Settings
  • RSVP Invitations
Templates
  • Event Template Override
  • Speaker Template Override
  • Archive Page Override

WPCafe

  • Plugin Installation
  • WpCafe Shortcode
  • Multivendor Addon
  • Translation
  • WpCafe Elementor Widgets
  • Searching Products with Pickup/Delivery
  • Oxygen Builder Elements
  • User Roles and Permissions
  • Plugin Uninstallation
  • Theme Compatibility
  • Get Support
  • License
Delivery Module
  • General
  • Add Food Store’s Location at Google Map
  • Google autocomplete address in the checkout
  • Minimum order amount to place order
Food Ordering
  • General Settings For Location
  • Add New Food Menu
  • Food Ordering with QR code
  • Add Food Category and Tag
  • Minicart
  • Tipping
  • Discount
  • Special Menus
  • Live Order
  • Pickup
  • Delivery
  • Order Bumps
  • Product Addons
  • Product Addons for Vendor
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
  • Archive Page Override

Archive Page Override

Table of Contents
  • Event Archive Style
    • Event Archive Default Hooks
  • Speaker Archive Style
    • Speaker Archive Style Hooks
  • Archive Page Override by Template

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

Now that you know the Event Archive page hooks, you can override the Eventin Event Archive Page via your child theme’s functions. You can remove default elements, you can add your custom elements by picking the correct positioned “hook” and triggering your function, and you can even “move” existing elements.

Event Archive Style #

etn_before_event_archive_container

etn_before_event_archive_item

etn_before_event_archive_content
etn_before_event_archive_title
etn_after_event_archive_title
etn_after_event_archive_content

etn_after_event_archive_item

etn_after_event_archive_container

Event Archive Default Hooks #

This is the list of Event Archive 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 to assemble the Event Archive page together. Because it’s done this way, you can therefore use “remove_action” to remove one of these elements.

/**
 * @snippet       List of Default Archive Hooks @ Eventin Single Event
 * @author        Themewinter
 * @updated       Eventin WP 2.4.0
 **/


// Before content
add_action( 'etn_before_event_archive_container' );
add_action( 'etn_before_event_archive_item' );
add_action( 'etn_before_event_archive_content', );
add_action( 'etn_before_event_archive_title', );
add_action( 'etn_before_event_archive_thumbnail' );
add_action( 'etn_before_event_archive_footer_content' );


// After content
add_action( 'etn_after_event_archive_footer_content' );
add_action( 'etn_after_event_archive_thumbnail' );
add_action( 'etn_after_event_archive_title',);
add_action( 'etn_after_event_archive_content', );
add_action( 'etn_after_event_archive_item' );
add_action( 'etn_after_event_archive_container' ); 

// All Filters
add_filters('etn_event_archive_content', );
add_filters( 'etn_event_archive_column', '4' );

Speaker Archive Style #

etn_before_speaker_archive_container

etn_before_speaker_archive_item

etn_before_speaker_archive_content

etn_before_speaker_title

etn_after_speaker_title

etn_after_speaker_archive_content

etn_after_speaker_archive_item

etn_after_speaker_archive_container

Speaker Archive Style Hooks #

This is the list of Eventin speaker archive 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 to assemble the speaker archive page together. Because it’s done this way, you can therefore use “remove_action” to remove one of these elements.

/**
 * @snippet       List of speaker archive style hooks @ Eventin Single page
 * @author        Themewinter
 * @updated       Eventin WP 2.4.0
 **/

// Before content
add_action( 'etn_before_speaker_archive_container' );
add_action( 'etn_before_speaker_archive_item' );
add_action( 'etn_before_speaker_archive_content',);
add_action( "etn_before_speaker_title" );
add_action( "etn_before_speaker_archive_thumbnail" );

// After content
add_action( "etn_after_speaker_archive_thumbnail" ); 
add_action( "etn_after_speaker_title" );
add_action( 'etn_after_speaker_archive_content',);
add_action( 'etn_after_speaker_archive_item' );
add_action( 'etn_after_speaker_archive_container' );

// All Filters
add_filters( 'etn_speaker_archive_column', '4' ) );


Archive Page Override by Template #

WPEventin Template Override Documentation
What are your Feelings
Share This Article :
  • Facebook
  • Twitter
  • LinkedIn
  • Pinterest
Updated on June 19, 2022
Speaker Template Override
Table of Contents
  • Event Archive Style
    • Event Archive Default Hooks
  • Speaker Archive Style
    • Speaker Archive Style Hooks
  • Archive Page Override by Template
Copyright © 2023 Documentation for Plugins