Publisher does not support the Fluid field type. Please do not contact asking when support will be available.

If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.

Ticket: Removing/unpublishing translated content

Status Resolved
Add-on / Version Publisher 1.2.3
Severity Critical
EE Version 2.8

Archive

Mar 14, 2014

I have an entry which needs to remain published in the default language but there is translated content which needs to be removed.
If I re-save the translated content as draft it still retains the previously published content, so I am unable to get the translation off the site. Now that it’s been created I can only remove the alternate language by removing the whole entry, which I don’t want to do.

Is there a way to remove language content for a single entry?

Thanks
Matt

#1

BoldMinded (Brian)

The delete translation button in the toolbar doesn’t do what you need it to do? If not, and you’re only needing to remove a small number of entries it might be easiest to just remove them from the exp_publisher_titles and exp_publisher_data tables.

delete from exp_publisher_titles where publisher_lang_id = ‘x’ and publisher_status = ‘open’ and entry_id = ‘x’ delete from exp_publisher_data where publisher_lang_id = ‘x’ and publisher_status = ‘open’ and entry_id = ‘x’

Backup your db first before running those just incase.

Login to reply