- Discussions
- 4 847
- Messages
- 12 579
- Solutions
- 85
- J'aime
- 7 884
- Points
- 198
Description :
Provides complete thread title control. Change case, remove certain characters and more.
(Example of Options page) :
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 :
Télécharger V1.4 :
Provides complete thread title control. Change case, remove certain characters and more.
(Example of Options page) :
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);
}
Télécharger V1.4 :
Pour consulter le contenu, vous devez : Se connecter ou S'inscrire.
