Skip to main content

Reached the Limit of Posting

Trying to post updates in my community and every few minutes it requires a refresh (causing a loss of current work) and now I'm getting an error saying "You've reach the limit of posting."

Any ideas on how to fix these two issues? Thanks so much!

Thomas Oates

Looks like the builtin limit is 5 posts within a 5 minute period. You could modify that value by using this filter: fluent_community/rate_limit/posts_per_5_minutes

kyler boudreau

Thomas OatesΒ thanks man! So I know this would go in functions.php, but do you have any idea on exact syntax? If I try add_filter('fluent_community/rate_limit/posts_per_5_minutes', '11'); I'm getting a critical site error.

Thomas Oates

kyler boudreauΒ I think this should work but I haven't tested it.

function change_posts_rate_limit() {
return 10;
}
add_filter( 'fluent_community/rate_limit/posts_per_5_minutes', 'change_posts_rate_limit' );

Thomas Oates

Change 10 to whatever you want the new limit to be.

kyler boudreau

Thomas OatesΒ right on man, that worked. Thank you!