Thread title manager

Thread title manager 2.1

No permission to buy ($35.00)
Compatible XF 2.x versions
  1. 2.0
  2. 2.1
  3. 2.2
  4. 2.3
Premium upgrade:

This XF2 add-on along with the entire collection can be purchased for $35.00 USD. Your Premium upgrade will allow you to download as many XF2 add-ons as you like for one year. Please see the entire collection located in the Resources area at this URL:

https://www.xf2addons.com/

Description:

Manages appearance of thread titles.

(Example of Options page)

pic001.webp


(Example of error message)

pic002.webp


Features:

All phrases start with threadtitlemanager_ for your convenience.

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.
  • Like
Reactions: javilonas
Author
AndyB
Views
2,433
First release
Last update

Ratings

5.00 star(s) 1 ratings

More resources from AndyB

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.

Latest reviews

Works as advertised! It saves our forum from looking as though it was overrun by social media addicted teenagers. 😁
Top Bottom