- XF Compatibility
- 2.0.x
- 2.1.x
- 2.2.x
- Headline
- Provides complete thread title control. Change case, remove certain characters and more.
- Short Description
- Download and Discuss Premium, BusinessTitle control 1.4 version on NullPro Community. It is zip Extention type and 16.3 KB File size. From Title control have 1 Description Attachments, 354 Views.
Description:
Provides complete thread title control. Change case, remove certain characters and more.
(Example of Options page)
Installation:
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:
Code:
<?php
if (substr_count($title, '!') > 0)
{
$patterns[0] = '/\!/';
$replacements[0] = '';
$title = preg_replace($patterns, $replacements, $title);
}
?>
Click the Discussion tab for other examples.
Provides complete thread title control. Change case, remove certain characters and more.
(Example of Options page)
Installation:
- Download Andy-TitleControl-1.3.zip and unzip it.
- Copy the src/addons/Andy/TitleControl directory to your server.
- From the Admin Control Panel Install the add-on.
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:
Code:
<?php
if (substr_count($title, '!') > 0)
{
$patterns[0] = '/\!/';
$replacements[0] = '';
$title = preg_replace($patterns, $replacements, $title);
}
?>
Click the Discussion tab for other examples.