Skip to content
WJunction - Webmaster Forum

Hiring BBCode vBulletin Edit

Status
Not open for further replies.
I have VB 3.8

I modified my "class_bbcode.php" file. The modification that was performed, was to the "handle_bbcode_url" function in the file. The function was modified so that when url's are posted in posts, that the url's are displayed as clickable thumbnail images (of the site they are linking to), instead of just clickable hyperlinks.

The original code in the "handle_bbcode_url" function that made it display clickable hyperlinks is still there, it is just now commented out so it is not active.

My problem is, in user signatures, any url's there are also displaying as clickable thumbnail images now, and I want url's in the signatures to display as clickable hyperlinks.

Please provide a quote to perform the work needed to make url's in signatures display as clickable hyperlinks, while keeping the url's in the posts as clickable thumbnail images like they are now.


Thanks.


I am willing to pay $5 via PayPal for this edit that should only be 1 line.
 

4 comments

No, the bbcode is edited through class_bbcode.php which makes all the links into the image of the website.

I need to prevent this parsing in signatures so that only hyperlink is shown and not the image of the website.
 
r0ck, Im not sure what to add in the php file for it.
Here is what I have:
Code:
if ($GLOBALS['_nohyperlink'])
        {   
            return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
        }
        else
        {
            return "<a href=\"{$rightlink}\" target=\"_blank\" title=\"{$text}\"><img src=\"http://images.shrinktheweb.com/xino.php?stwembed=1&stwaccesskeyid=c447efb0bb9069f&stwsize=sm&stwurl=".urlencode($rightlink)."\" alt=\"{$text}\" border=\"0\" /></a>";
        }
 
Status
Not open for further replies.

About the author

D
Active Member · Joined
381
Messages
16
Reactions
18
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom