Log in

View Full Version : Reply topic title remove?


superluks
02-13-2007, 08:17 PM
How can i remove that topic title what automaticly is added by board when i reply to any topics?
Just this field shoud be empty.

Edited question... english is bad so sorry.

Aken
02-14-2007, 06:20 AM
You can turn off that feature in your Admin CP.

vBulletin Options > vBulletin Options > Message Posting and Editing Options > "Automatically Quote Post / Thread Title" set to NO.

silpher
05-28-2012, 03:15 AM
its not working for me

Max Taxable
05-28-2012, 03:21 AM
its not working for meOnly works for posts made after the AdminCP change.

You would need a SQL query to remove the past ones.

Simon Lloyd
05-28-2012, 07:13 PM
You can do this in phpmyadmin, visit the post table (my test post table is called tb_post) then click "SQL" at the top, clear everything in it and paste this UPDATE `tb_post` SET `title` = '' WHERE `title` LIKE 'Re:%' (change tb_post to the name of your post table) and then click go!

Now all posts that have quoted the thread title (they are quoted as Re: xxxnnnxxx) will have been replaced by an empty string.