Skip to main content

Posting Limit, how to change the settings (Unlimited for Admins)

I have a community with a news channel and I repost them there, but there is a limit that blocks me to post all at once, where is the setting to have unlimited for admins? Thanks

Mat β€Ž

Carlos RoderaΒ for Max Post Lenght you can use Filter hook from here. If you are asking for Rate Limit I am not sure if there is any yet (unless this is the one) but it should exist as suggested in the past - ref: link

Rate Limiting Config: Currently you can change using filter hooks.

Carlos Rodera

Mat β€ŽΒ Hi Mat, is not max post limit length, but the number of posts you post in a limited interval, I think I did like 6 in a minute or two and there a limitation

Mat β€Ž

Carlos RoderaΒ so you need to change the Rate Limit but I cannot find it and it should be possible as suggested by Shahjahan JewelΒ in the past.

Carlos Rodera

Mat β€ŽΒ yes, first I need to understand the steps because I did never modify nothing here and I really don't know how to do that, is there a guide for this? Thanks for your help

Mat β€Ž

Carlos RoderaΒ hmm.. filter hooks are for developers and I am not sure if you want to become one haha. That is why I think most features should be available natively in the settings.

Try to read one page here and see if you understand a bit the basics. Then you can use the below code snippet as an example - copy and paste directly into the Fluent Snippet plugin and see if it works.

Example:

If I would like to limit all users post length to 10 characters (overwrite the default value for the fCommunity) I would copy the below code and add it to the Fluent Snippet plugin:

add_filter('fluent_community/max_post_length', function($maxLength) {
      return 10; // Set the maximum post length to 10 characters
  });

Ref: link

Carlos Rodera

Mat β€ŽΒ thanks Mat, no, not looking to go this deep right now, well I hope they implement something in the settings to remove the limits for admins, I appreciate one more time you help here πŸ™‚

Mat β€Ž

Att: Fluent Snippet

Additional explanation: https://youtu.be/enY3Q91x6cQ?si=YzVSZQpnpevh21Zh

Carlos Rodera

Mat β€ŽΒ Thanks again Mat I will try something new to learn! πŸ˜