Thread title manager

XF2 Addons Thread title manager 2.1
Manages the appearance of thread titles

Compatible versions
2.0, 2.1, 2.2
Description:
Manages the appearance of thread titles.

(Example of Options page)
pic001.jpg


(Example of error message)
pic002.jpg


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: Frawg and bene
shanruto
Author shanruto
Level
10
5,175 pts
2.1 Version
0 Downloads
840 Views
Published
Updated
0.00 star(s) 0 ratings Average Rating (0)
No Tags

More files from shanruto

Top Bottom