Theme editor

Guide XenForo Bulk Deletion of XenForo Tags

Kreathex

I love this place!
Corporate User
Thread owner
f you prefer, you can also perform this action via AdminCP → BB Code & Content → Tags.

To delete them in bulk using SQL:

Be sure to take a backup of your database first.

Then, run the following queries in phpMyAdmin after selecting your database from the SQL tab.

Code:
TRUNCATE TABLE `xf_tag`;
TRUNCATE TABLE `xf_tag_content`;

To remove the remaining traces left on the threads:

Code:
UPDATE xf_thread SET tags = '[]';
 
Back
Top