- XF Compatibility
- 2.2.x
- Short Description
- Where is the place to Download and Discuss [AndyB] Thread title manager 2.1? The answer is here. It is zip Extention type and 19.9 KB File size. From The Content have 1 Description Attachments, 6 discussion, 6 Updates, 344 Views on NullPro.
Manages appearance of thread titles.

External file:
The External File option allows the use of a PHP file that can control the final outcome of the thread title. Here's an example that will remove the exclamation character:
PHP:
Questions and answers:
Q: Does this change old thread titles, or only new ones after the add-on is installed?
A: Only new or edited thread titles after the add-on is installed.

External file:
The External File option allows the use of a PHP file that can control the final outcome of the thread title. Here's an example that will remove the exclamation character:
PHP:
PHP:
<?php
if (substr_count($title, '!') > 0)
{
$patterns[0] = '/\!/';
$replacements[0] = '';
$title = preg_replace($patterns, $replacements, $title);
}
Q: Does this change old thread titles, or only new ones after the add-on is installed?
A: Only new or edited thread titles after the add-on is installed.