automatically code all links

i think this may help you
Code:
http://www.vbteam.info/req-addons-template-modifications/7383-need-modification-auto-code-all-links.html
 
thetillian said:
i think this may help you
Code:
http://www.vbteam.info/req-addons-template-modifications/7383-need-modification-auto-code-all-links.html

This is the one I'm looking for but it doesn't work on 3.7.0.
 
For some reason it automatically codes all the URLs in my forum to [ URL=whatever ]the page title of whatever[/ URL ].

How do I disable this? I want the raw URLs and not the page titles.
 
jastor said:
For some reason it automatically codes all the URLs in my forum to [ URL=whatever ]the page title of whatever[/ URL ].

How do I disable this? I want the raw URLs and not the page titles.

Vbulletin automatically makes any links that begin with "www" into links....

You don't need the modifcation. The mod is only to change links to the title.
 
GgAcE said:
Vbulletin automatically makes any links that begin with "www" into links....

You don't need the modifcation. The mod is only to change links to the title.

I want them as links yes, but I _dont_ want the title of the link instead of the URL :P how do I disable that?
 
Auto Code ALL Links


This mod involves editing a PHP file from vBulletin.

open the includes/functions_newpost.php

Find

PHP:
        $urlReplaceArray = array( 
            "[url]\\2\\4[/url]" 
        );

And replace with

PHP:
        $urlReplaceArray = array( 
            "[code]\\2\\4[/code]" 
        );
 
Back
Top