|
if you're integrating with a forum, you need to edit the profile.tmpl
From member.php...
include( "{$Globals['PP_PATH']}/templates/menubar.tmpl" );
include( "{$Globals['PP_PATH']}/templates/profile.tmpl" );
if ( $Globals['vbversion'] == "photopost" ) {
include( "{$Globals['PP_PATH']}/templates/member.tmpl" );
}
There are all of the different templates loaded.
|