Resource icon

vBulletin Change Thread Prefixes For All Threads In Forum

Recently I had the need to add a new prefix to an existing vBulletin forum that had hundreds of threads. Manually editing each thread to change the prefix was not an ideal solution.

This query will take care of that for you. :smiley: Replace {prefixID} with the Prefix ID you created and {999} with the forum ID that you want to bulk update.

Code:
update thread set prefixid = '{prefixID}' where forumid='{999}';
Author
Kevin
Views
235
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from Kevin

Back
Top