|
OK, the include in the undercat template looks like this:
include( "{$Globals['PP_PATH']}/{$Global ['TMPL_PATH']}/commentspal.tmpl" );
echo "<br />";
I tried to make it look like the others, but got an error message (not sure what exactly I did now). My statspal edit was as follows:
From this:
if ( $Globals['statspal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/statspal.tmpl" );
To this:
if ( $Globals['statspal'] == "yes" && $User['userid'] > 0 ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/statspal.tmpl" );
What and where do I edit the comments include??
Please advise, Thanx, Stu
|