$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>plugins - Events Not Appearing on Frontend Without Manual Update|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

plugins - Events Not Appearing on Frontend Without Manual Update

matteradmin9PV0评论
Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 7 days ago.

Improve this question

I’m using Fluent Forms on my WordPress site to collect event submissions, and I’ve connected it with Make (Integromat) via webhook. The webhook sends the submitted form data to Make, which then uses the WordPress “Create a Post” module to create new events using The Events Calendar Pro.

The events are successfully created with the following settings:

post_type: tribe_events

post_status: publish

Custom fields like EventStartDate and EventEndDate are set using metadata

_EventStatus: confirmed is also being set in the metadata (though we also tested without it)

Everything seems to work correctly — the event appears in the WordPress backend as a published event with future dates.

However, we are experiencing the following issue:

The event does not appear in the frontend calendar or list view unless we manually open the event in the WP admin and click “Update.”

Only after manually saving or updating the post does it become visible on the /events listing page.

We have cleared caches, confirmed the PHP version (8.1.32), ensured that the plugin is licensed and up to date, and verified that no category or language filters are hiding the post.

We suspect that there may be some initialization, cache refresh, or internal hook that is triggered only when the post is manually updated via the WordPress UI, but not when created through the API or Make.

Our setup: Fluent Forms → Make (webhook)

Make creates the post in WordPress via REST API

The Events Calendar Pro is installed and licensed (v7.6+)

WP version: 6.8.1 / PHP: 8.1.32

Is there any hook or process we should trigger after automated creation to make the event fully visible in the frontend calendar?

Thank you very much in advance for your support.

Post a comment

comment list (0)

  1. No comments so far