Skip to content
WPCode Library

WPCode Library

Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!

Get WPCode
See all Features

  • Features
    • Code Snippets Library
    • Smart Conditional Logic
    • Advanced Code Revisions
    • Private Cloud Library
    • Marketing Scripts & Conversion Pixels
  • Pricing
  • Snippets Library
  • Help Center
    • Docs
    • Support
  • Blog
  • Login
  • Get WPCode

Snippets library

Browse Snippets
Claim your Free Profile
Add Snippet

Tag: eventbrite

Extra WordPress Filters in Pro (Update single event pretty permalink to avoid permalink conflict) | Display Eventbrite Events

add_filter(‘wfea_single_event_slug’, function() { return ‘eb_event’; });Continue reading

Extra WordPress Filters in Pro (Do something with the age restriction display) | Display Eventbrite Events

add_filter( ‘wfea_age_restriction’, function ( $output, $age) { // do your stuff change $output if ( ‘all_ages’ === $age ) { $output = ‘No Age Restriction’; } return $output; }, 10, 2 );Continue reading

Extra WordPress Filters in Pro (Do something with the ticket availability display) | Display Eventbrite Events

add_filter( ‘wfea_availability_display’, function ( $msg, $total_sold, $event_capacity) { // do your stuff change $msg return $msg; }, 10, 3 );Continue reading

Extra WordPress Filters in Pro (Change the symbol for a currency. Evenbrite currencies are ISO e.g. USD) | Display Eventbrite Events

add_filter( ‘wfea_currency_symbol’, function ( $symbol, $currency) { // do you stuff to update the symbol return $symbol; }, 10, 2 );Continue reading

Extra WordPress Filters in Pro (Do something with the price display) | Display Eventbrite Events

add_filter( ‘wfea_price_display’, function ( $price_display, $min, $max, $currency) { // do you stuff to update $end return $price_display; }, 10, 4 );Continue reading

Combined Date – Time Format (Do something with the Local End Time) | Display Eventbrite Events

add_filter( ‘wfea_eventbrite_event_end’, function ( $end ) { // do you stuff to update $end return $end; }, 10, 1 );Continue reading

Combined Date – Time Format (Do something with the Local Start Time) | Display Eventbrite Events

add_filter( ‘wfea_eventbrite_event_start’, function ( $start ) { // do you stuff to update $start return $start; }, 10, 1 );Continue reading

Combined Date – Time Format (Override Completely) | Display Eventbrite Events

add_filter( ‘wfea_event_time’, function ( $event_time, $start, $end ) { // do you stuff to update $event_time return $event_time; }, 10, 1 );Continue reading

Combined Date – Time Format (Sample: 16th January) | Display Eventbrite Events

add_filter( ‘wfea_combined_date_time_date_format’, function ( $format ) { return ‘jS F’; }, 10, 1 );Continue reading

Combined Date – Time Format (Sample: am / pm) | Display Eventbrite Events

add_filter( ‘wfea_combined_date_time_time_format’, function ( $format ) { return ‘g:i a’; }, 10, 1 );Continue reading

Page navigation

Previous 1 2 3 Next

Company

  • About
  • Careers
  • Testimonials
  • Blog
  • Affiliates
  • Contact
  • Twitter
  • Facebook

Powerful Code Features

  • Ready-made Snippets Library
  • Smart Conditional Logic
  • Advanced Auto-insert Locations
  • Global Header & Footer Scripts
  • Safe Error Handling
  • WordPress Code Generators

  • Ecommerce Conversion Pixels
  • Dynamic Content Elements
  • Reduce Number of Plugins
  • Save Snippets in Cloud
  • Easy Code Management
  • Advanced Code Revisions

Helpful Links

  • Support
  • Documentation
  • Plans & Pricing
  • WordPress Hosting
  • Start a Blog
  • Make a Website

Copyright © 2025 WPCode. WPCode® is a registered trademark of WPCode, LLC

Terms of Service
Privacy Policy
FTC Disclosure
Sitemap
WPCode Coupon

The WordPress® trademark is the intellectual property of the WordPress Foundation. Uses of the WordPress®, names in this website are for identification purposes only and do not imply an endorsement by WordPress Foundation. WPCode is not endorsed or owned by, or affiliated with, the WordPress Foundation.

Snippet Preview