Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there, Thanks for the feedback. I’ve passed your suggestion along to our developers for their review. I’ll let you know what they say, as soon as I hear back!

    Plugin Author Automattic

    (@automattic)

    Sure, the transient time is filterable, so you can set it to whatever you like with the eventbrite_cache_expiry filter.

    You could do something like this in a plugin:

    function pluginprefix_transient_expiry() {
    	return 30 * MINUTE_IN_SECONDS;
    }
    add_filter( 'eventbrite_cache_expiry', 'pluginprefix_transient_expiry' );
    Plugin Author Automattic

    (@automattic)

    Hello, did this work out for you?

    Thread Starter nhankla

    (@nhankla)

    Hi,
    I just double checked it and yes the transient is changing every 30 minutes now. Thanks lot for your help!

    Plugin Author Automattic

    (@automattic)

    Great, glad to hear it. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change Cache/Transient Time’ is closed to new replies.