Title: future posts
Last modified: July 26, 2018

---

# future posts

 *  Resolved [mikygo123](https://wordpress.org/support/users/mikygo123/)
 * (@mikygo123)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/future-posts-3/)
 * Hello,
    I set my timeline settings to show only future announcements,however 
   sometimes i saw old announcements and I have to save one more time the settings
   to make them hide. How can i solve this problem? Thanks.

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Code Parrots](https://wordpress.org/support/users/codeparrots/)
 * (@codeparrots)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/future-posts-3/#post-10530547)
 * Hi [@mikygo123](https://wordpress.org/support/users/mikygo123/),
 * It seems like the timeline is storing cached data and displaying past announcements
   to the user. This cache is updated twice per day, and is cleared out when a new
   announcement is created, an old announcement is updated or the settings page 
   is updated (or just saved).
 * You can certainly work around the caching issue by disabling caching within the
   plugin altogether. You’ll want to add the following code snippet to your themes
   functions.php file or into a custom MU plugin.
 *     ```
       function flush_timeline_express_cache() {
   
          if ( ! function_exists( 'delete_timeline_express_transients' ) ) {
             return;
          }
   
          delete_timeline_express_transients();
   
       }
       add_action( 'init', 'flush_timeline_express_cache' );
       ```
   
 * Ideally, that would delete the cached data on the timeline page load. We will
   take a look at what we can do to include a filter to disable the cache in the
   plugin altogether.

Viewing 1 replies (of 1 total)

The topic ‘future posts’ is closed to new replies.

 * ![](https://ps.w.org/timeline-express/assets/icon-256x256.png?rev=1007462)
 * [Timeline Express](https://wordpress.org/plugins/timeline-express/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/timeline-express/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/timeline-express/)
 * [Active Topics](https://wordpress.org/support/plugin/timeline-express/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/timeline-express/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/timeline-express/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Code Parrots](https://wordpress.org/support/users/codeparrots/)
 * Last activity: [7 years, 9 months ago](https://wordpress.org/support/topic/future-posts-3/#post-10530547)
 * Status: resolved