Thread title manager

XF2 ADD-ON Thread title manager 1.7

Thread title manager
Persian Description
افزونه فوق عناوین موضوعات را مدیریت می کند
Compatible XF Versions2.0 , 2.1 , 2.2Visible BrandingNo
pic001.jpg

Description:

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:
<?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.
Top