Opt Out Federation for a Single Content Item

Disable federation for one Joomla article without affecting the rest of the category or author account.

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.article', <ARTICLE_ID>, 0)
ON DUPLICATE KEY UPDATE federate = VALUES(federate);

Replace <ARTICLE_ID> with the Joomla article ID.

Re-enable federation later

To allow federation again for that article:

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

Check your result

  1. Save or republish the article.
  2. Open Components -> Fediverse -> Deliveries.
  3. Confirm no outbound activity is queued for that item.

Troubleshooting