📕
Meup - Marketplace Events WordPress Theme
  • READ THE FIRST
  • Global
    • Youtube Tutorials
    • Install Theme
    • Update Theme/Plugins
      • Automatic Update
      • Manual Update
    • Support Theme
  • Basic
    • Header Settings
    • Update Footer
    • Home Page
    • Theme Options
      • Typography
      • Layout Global
      • Header Global
      • Footer Global
      • Blog
      • Event
      • Venue
      • Author
      • Site Identity
  • Main Features
    • How to make money with Theme?
    • VENDORS FEATURES
      • READ THE FIRST
      • Package
      • Create Event
        • Basic
        • Ticket
          • Internal link - No Seat
          • Internal link - Simple Seat
          • Internal link - Map
          • Event Online (Virtual Online)
          • External Link
          • Customize Template
        • Calendar
        • Coupon
        • Staff member
        • Cancel booking
        • Extra Service
      • My Listings
      • Wallet
      • General
      • My Bookings
      • My Wishlist
      • My Profile
    • USER FEATURES
      • READ THE FIRST
      • My Bookings
      • My Wishlist
      • My Profile
    • ADMIN FEATURES
      • Create Event
      • Manage Event
      • Manage Packages
      • Manage Venues
      • Manage Categories
      • Manage State, City
      • Manage Custom Taxonomy
      • Manage Custom Checkout Fields
      • Manage all Bookings
      • Manage all Tickets
      • Report Sales
      • Report User
      • Cancel/Refund Booking
      • Manage Withdraw and Payout
        • Method 1
        • Method 2
    • Settings
      • General
      • Event
      • Package
      • Checkout
      • Cancel Booking
      • Mail
      • Tax & Profit
      • Role
      • PDF Invoice
      • Ticket Transfer
      • Date Format
    • Elements in page
      • Search Form
      • Search Half Map
      • Event Category
      • Event Slider
      • Location Event
      • Event Slideshow
      • Event Grid
  • Login/Register User
    • READ THE FIRST
    • Setup Login, Register
    • Customize Register User Form
    • Admin Approve Vendor
  • Scan QR code in ticket
    • READ THE FIRST
    • Via Mobile Phone
    • Via Application
      • Install Application
      • Use Application
      • Customize Application
    • Via a link
    • Note
  • Frontend
    • Change Slug event
    • Event Archive Template
    • Event Detail Template
    • Cart Event Page
    • Checkout page in WooComemrce
    • Author Page
    • Customize PDF Ticket
    • Disable Marketplace
    • Vendor Dashboard
    • Mail
    • Update Sharing Social
  • Other
    • Mail chimp setting
    • Google Map
    • Translation
    • Find Icons
  • FAQs
    • Can't Book Events
    • Cart Event Error
    • Admin will approve event before publish it.
    • Login before booking event
    • when i create events, there is not ''booking button'' but ''share button''
    • Get Token Instagram
    • The vendor submit event without register package
    • Search go to home page
Powered by GitBook
On this page
  • 1: Frontend
  • 2: Customzie via Hook
  • 1: Remove images, gallery at top
  • 2: Remove modern Date
  • 3: Remove Event Name
  • 4: Remove Date
  • 5: Remove Address
  • 6: Remove Booking button
  • 7: Remove Social Share
  • 8: Remove Export
  • 9: Remove Calendar
  • 10: Remove Description
  • 11: Remove Ticket Information
  • 11.1 Remove "Discount" in Ticket Information
  • 12: Remove Calendar or Schedule Event
  • 13: Remove Gallery
  • Remove Video
  • 14: Remove Rating
  • 15: Remove Related Events
  • 16: Remove Policy
  • 17: Remove Map
  • 18: Contact Info
  • 19: Remove Tags
  • 20: Remove Ads image
  • 3: Customize via file template in child theme

Was this helpful?

  1. Frontend

Event Detail Template

PreviousEvent Archive TemplateNextCart Event Page

Last updated 8 months ago

Was this helpful?

1: Frontend

2: Customzie via Hook

1: Remove images, gallery at top

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' );

13: Remove Gallery

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' );

15: Remove Related Events

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' );

18.4 Remove Website Link

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