1 (edited by gobligoo 2006-04-22 14:51)

Topic: Remove or modify website link on left side in profile

Hi,

Im looking for two things, actually only one, but if the answer on my first question is NO then i need YES (and a explaination) on the second question. Here goes:

1. Is it possible to open the website link in a new window? (The website link in the profile of members) I have added a mod her thet opens the external links in posts in new windows. I have my PunBB forum in a iframe u see..

if NO on the above:

2. wel, can i disable the website link in the profile?

BTW: nice script this is, very easy yes.. smile



..gaming4ever..

Re: Remove or modify website link on left side in profile

1. Yes, open viewtopic.php and find:

$user_contacts[] = '<a href="'.pun_htmlspecialchars($cur_post['url']).'">'.$lang_topic['Website'].'</a>';

Replace with:

$user_contacts[] = '<a href="'.pun_htmlspecialchars($cur_post['url']).'" onclick="window.open(this.href); return false;">'.$lang_topic['Website'].'</a>';
Looking for a certain modification for your forum? Please take a look here before posting.