Thread title manager

Add-ons Thread title manager 2.1

Register & Get access to index
Compatible XF Versions
2.0 , 2.1 , 2.2
Visible Branding
No
Description:
Manages appearance of thread titles.

1674915810296.png

1674915827653.png


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
if (substr_count($title, '!') > 0)
{
    $patterns[0] = '/\!/';
    $replacements[0] = '';
    $title = preg_replace($patterns, $replacements, $title);
}
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.
Author
XenForo
Views
First release
Last update
Rating
0.00 star(s) 0 ratings

Latest updates

  1. See description

    Thread title manager v2.1 changes: Now allows moderators override the thread title to have...
  2. See description

    Thread title manager v2.0 changes: Added Date cutoff and Exclude forums to options page.
  3. See description

    Thread title manager v1.9 changes: Added Maximum characters to options page.
Back
Top Bottom