Remove/Replace some Characters in Topic Title

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SoulSuite
    New Member
    • Jul 2008
    • 27
    • 3.7.x

    Remove/Replace some Characters in Topic Title

    Hey guys,

    I lookin' for a mod that can remove characters into the title or replace it them.

    It must;
    - Replace all words in caps into lower case.
    - Remove/replace strange characters

    Let me know.
  • Wayne Luke
    vBulletin Technical Support Lead
    • Aug 2000
    • 74132

    #2
    You would have to look for mods at www.vbulletin.org.
    Translations provided by Google.

    Wayne Luke
    The Rabid Badger - a vBulletin Cloud demonstration site.
    vBulletin 5 API

    Comment

    • Jake Bunce
      Senior Member
      • Dec 2000
      • 46598
      • 3.6.x

      #3
      Run this query to do a one-time replacement (backup first):

      UPDATE thread
      SET title = REPLACE(title,'OLD TEXT','NEW TEXT')

      Comment

      Related Topics

      Collapse

      Working...