....well shoot, back to square one....
How to make any new page display tags properly within itself using the updated MOD 2.0.0., Or is all new pages strictly built for HTML only tags?
Should I start a new thread...
Is there a way we can update the first post to show the "updated version" of this mod instead of the old out-dated version.... since this is in the MOD Database Cleanup section?
I just don't know where to go from here....... upgrading to phpbb3 is out of the question for this site atm, and I'd really like to have certain features on different "new pages" like who's on line, or check messages, or ....
I've already figured out how to add an overall_header and overall_footer to the template.tpl file so that each "new page" will have the same unique header and footer (that's different from the normal overall_header and overall_footer in the template directory). By surrounding the {PAGE_CONTENT} with codes that will appear on all "new pages". Even though the normal overall_header and overall_footer.tpl files are still used which is actually part of the template that's being used.
Code: Select all
<table width="100%" border="0" cellpadding="0" cellspacing="0" id="bodytable">
<tr>
<td width="44"><img src="templates/SMC2008/images/L_R1_a.gif" width="44" height="27" /></td>
<td background="templates/SMC2008/images/L_R1_b.gif"></td>
<td width="43"><img src="templates/SMC2008/images/L_R1_c.gif" width="43" height="27" /></td>
</tr>
<tr>
<td width="44" background="templates/SMC2008/images/L_R2_a.gif"></td>
<td background="templates/SMC2008/images/L_body_bk.gif">
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
<tr>
<td align="left" valign="bottom"><span class="gensmall">
<!-- BEGIN switch_user_logged_in -->
{LAST_VISIT_DATE}<br />
<a href="{U_PRIVATEMSGS}" class="viewlinks">{PRIVATE_MESSAGE_INFO}</a></span><br />
<!-- END switch_user_logged_in -->
<span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
<td align="right" valign="bottom" class="gensmall">
<!-- BEGIN switch_user_logged_in -->
<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a>
<!-- END switch_user_logged_in -->
</td>
</tr>
</table>
{PAGE_CONTENT}
</td>
<td width="43" background="templates/SMC2008/images/L_R2_c.gif"></td>
</tr>