Opt Out Federation for a Category

Disable federation for all content in a specific Joomla category.

Before you begin

Apply the opt-out

Insert or update a row in #__fediverse_content_settings:

INSERT INTO #__fediverse_content_settings (context, item_id, federate)
VALUES ('com_content.category', <CATEGORY_ID>, 0)
ON DUPLICATE KEY UPDATE federate = VALUES(federate);

Replace <CATEGORY_ID> with the Joomla category ID.

Re-enable federation later

To turn federation back on for that category:

INSERT INTO #__fediverse_content_settings (context, item_id, federate)
VALUES ('com_content.category', <CATEGORY_ID>, 1)
ON DUPLICATE KEY UPDATE federate = VALUES(federate);

Check your result

  1. Publish or update an article in that category.
  2. Open Components -> Fediverse -> Deliveries.
  3. Confirm no new outbound delivery is queued for that article.

Troubleshooting