Questions tagged [the-events-calendar]
The plugin Events Calendar from Modern Tribe.
50 questions
0 votes
2 answers
79 views
WP Query to display events and custom post type in a set order
I have the following arguments to load events and notices from The Events Calendar plugin and a custom post type registered in my custom theme. The query should load events with the "Featured&...
0 votes
0 answers
47 views
Change displayed timezone SMT by SGT in WordPress
I have a WordPress website where I have used the Events Calendar to display events. On the single event, I enter the event time and the timezone is Singapore. However, it displays SMT and I would like ...
0 votes
1 answer
122 views
The Events Calendar return the wrong start time [closed]
I created an event with the date 2024-06-18 and start_time 8:00am on the Time Zone Europe/Brussels. The wordpress is set on Asia/Hong_Kong timezone. if i get the start time like this $event_timezone =...
0 votes
0 answers
227 views
pre get posts not working with Tribe Events
I am using the events calendar by modern tribe. They claim this defaults to showing events in the main loop by event date. This is not what I am seeing on my site. I downgraded the plugin and it works ...
1 vote
1 answer
151 views
How to export native WordPress events in a form useful to Events Calendar
I have over 100 events in plain, vanilla, native WordPress events; they came from a Drupal conversion using FG Drupal to WordPress plugin. I’m not talking about Events Calendar events, Events Manager ...
0 votes
1 answer
117 views
How do I set a custom post type Category after import using wp_set_post_terms
I'm importing Events from a Salesforce Event Manager into WordPress, specifically into the The Events Calendar. The Events Calendar creates a CPT called Events. It also has its own Categories, which ...
1 vote
1 answer
2k views
Query only past events and only future events in the event calendar
after migrating my website to siteground I don't know why my event page doesn't work properly. My past event list and future list are messed up. All list report all events future and past. My code for ...
0 votes
1 answer
286 views
The Events Calendar, wp_query returning event date not published date
I am using The Events Calendar (https://theeventscalendar.com/) I am running a custom WordPress loop, and looking to display the published date for each event. Inside the loop, I am using the_date();. ...
0 votes
1 answer
162 views
Changing the words 'Now' & 'onward' to just the single word 'Dates' in The Events Calendar
I am trying to change 'Now onwards' to just 'Dates'. Something similar was done on: I use the events Calendar Plugin and I want to change some words When I used Kevin's snippet, from the link above, I ...
0 votes
0 answers
47 views
How to Create Events Calendar
How onthisday.com has been made? I'd want to make something similar. I guess I need to have a database with some events happened in a day (6 february 2021, 6 february 2020, 6 february 2019 ... 6 ...
1 vote
2 answers
1k views
I use the events Calendar Plugin and I want to change some words
Good Morning, I use Events Calendar for our Website, now I want to change the "Now onwards" and "onwards" on top of the page, also the next and previous at the bottom of the event calendar. I ...
0 votes
0 answers
441 views
Custom Permalink Structure for The Events Calendar
I am trying, programmatically, to alter the permalink structure of events created by The Events Calendar plugin. I already have other posts and pages set-up and don't want to change the permalink ...
0 votes
2 answers
250 views
Create post and update in the same flow [closed]
Intro: I'm using a weird plugin called The Events Calendar which vastly operates outside of WP functions. For example, I cannot retrieve custom fields with the WP function. So essentially, my problem ...
1 vote
1 answer
428 views
How to modify list of events in backend (admin) of The Events Calendar plugin?
In my Wordpress site I use plugin The Events Calendar (pro). There is a page with list of Events in backend. Link to this page looks like this: https://example.com/wp-admin/edit.php?post_type=...
0 votes
2 answers
1k views
WP_Query for custom post type and category_id not working
I am tring to implement custom filter for The Event Calendar. I have used this code $args = array( 'post_type' => 'tribe_events', 'meta_key' => '_EventStartDate', 'meta_query' => ...