Title control

Title control 1.4

Keine Berechtigung zum Herunterladen
XF-Kompatibilität
  1. 2.2.x
Short Description
Provides complete thread title control. Change case, remove certain characters and more.
Description:

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

(Example of Options page)


03202121_04.webp




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:



Code:

<?php

if (substr_count($title, '!') > 0)
{
$patterns[0] = '/\!/';
$replacements[0] = '';
$title = preg_replace($patterns, $replacements, $title);
}

?>

Click the Discussion tab for other examples.
Autor
anne51
Ansichten
540
Extension type
zip
File size
16.3 KB
Erste Veröffentlichung
Letzte Aktualisierung
Bewertungen 0.00 Sterne 0 Bewertungen
Link was Broken? Please Send Message to NP Team with direct message, You will get it very quickly!
Support Developer If you are satisfied with your test or project have earn money successfully, Maybe you can click more information button to support with buying.

Ähnliche Ressourcen

[01] Extend Title Characters A
Are you fed up with the restrictive Xenforo Thread titles limit?
Ansichten
213
Aktualisiert
[AndyB] Custom title manager A
Allows viewing and managing custom user titles.
Ansichten
311
Aktualisiert
[AndyB] Edit conversation title A
Allows editing conversation title even when you are the conversation recipient.
Ansichten
339
Aktualisiert
Oben