UBB.Dev
Posted By: Mr.Clean when clicking homepage link in users profile - 06/11/2001 8:50 AM
when people view peoples profiles and they click there homepage link it opens in the same windows. What i want to do is make it open in a new windows. What do i hack to do this?
Well obiously you just need to change the $homepage javascript. I'm not sure what file. wink
Easy fix...

in public_display_profile.pl (in your templates directory)...

FIND:

if (($vars_registration{homepage_field_use} ne 'DEL') && ($user_profile[3] ne '')) {

$user_profile[3] = "http://$user_profile[3]" unless $user_profile[3] =~ m/^http:///;

print <



$vars_wordlets{homepage_field}:




$user_profile[3]





THEN ADD IN -> TARGET=_blank
so that it looks like this...


if (($vars_registration{homepage_field_use} ne 'DEL') && ($user_profile[3] ne '')) {

$user_profile[3] = "http://$user_profile[3]" unless $user_profile[3] =~ m/^http:///;

print <



$vars_wordlets{homepage_field}:




$user_profile[3]




You'll have new pages poppin up in like 3.8 seconds...

Greetings
© UBB.Developers