Quote:
Originally Posted by Lynne
As Dave said, you would use a plugin and use the profile_start hook for the plugin.
|
I tried this code with the hook "profile_start" , and when I go to "mysite.com/profile.php?do=extrasettings" , it just comes up with a white/blank page. I have no idea what I am doing wrong.
Plugin Code:
Code:
if($_REQUEST['do'] == "extrasettings")
{
@include('profile_extra.php');
}
I have even tried using the hook "
profile_editoptions_start", but it was the same thing, blank white page.
EDIT: Im sorry, when I use the hook "
profile_start", I get a "
500 - Internal Server Error", when I use the hook "
profile_editoptions_start", I get the blank/white page.
I can access the custom setting's page fine with "mysite.com/profile.php?
cmd=extrasettings". I just cant get it to work like this: "mysite.com/profile.php?
do=extrasettings"