AndyB Title control

xF2 Add-on AndyB Title control 1.4

No permission to download
Compatible XF Versions
2.0, 2.1, 2.2
Visible Branding
No
Description:

Provides complete thread title control. Change case, remove certain characters and more.

(Example of Options page)
title-control.jpg

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);
}
Author
ENXF NET
Downloads
12
Views
520
Last update
Rating
0.00 star(s) 0 ratings

More resources from ENXF NET

Latest updates

  1. See description

    Title control v1.4 changes: Thread title control is now applied to editing the first post title.
Top