Blue
Red
Green
Orange
Voilet
Slate
Dark
Resource icon

Addon XF 1.X [AndyB] Title Control v1.3

No permission to download
Provides complete thread title control. Change case, remove certain characters and more.
Installation:
  1. Download Andy-TitleControl-1.3.zip and unzip it.
  2. Copy the src/addons/Andy/TitleControl directory to your server.
  3. From the Admin Control Panel Install the add-on.
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);
}

1669098252374.png
  • Like
Reactions: VBrossa
Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock    No Thanks