9
   

phpBB Search Engine Optimization - Sessions, static ( SEO )

 
 
AlpineZone
 
  1  
Tue 4 May, 2004 08:22 am
Craven de Kere wrote:
phpBB doesn't use meta tags like keyword and description. Untill a good solution is made for dynamic tags webmasters should just hardcode the meta tags in.


Craven - what are your thoughts on using something like this:
Code:<meta name="Description" content="{PAGE_TITLE}">
<meta name="Keywords" content="{PAGE_TITLE}">

Not a great keyword meta, but it can't hurt, right? Thanks for a great mod. I was already receiving pretty good SE ranking for my forum pages, but this will certainly help.
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 09:13 am
AdSense is a different bot but it's similarly named. The empty referral string can indicate that the bot visit was triggered by a user visit to AdSense or that they are checking an existing listing (if they already have a viewtopic.php url they will use the freshbot to check it).

It's not a big deal, the static urls really help with other search engines more than Google, because Google does reasonably well with the dynamic pages (just removing the SIDs is usually enough for Google).
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 09:14 am
AlpineZone,

That idea for metatags is not bad. The problem is that certain characters will cause problems, you'll see what I mean when you have topics with a quotation mark in the title.
0 Replies
 
AlpineZone
 
  1  
Tue 4 May, 2004 10:08 am
Craven de Kere wrote:
AlpineZone,

That idea for metatags is not bad. The problem is that certain characters will cause problems, you'll see what I mean when you have topics with a quotation mark in the title.

You get a & quot; in the meta tag. Is that really a bad thing? i.e. does the benefit of having something (even in the rare events where the quote code is included) there outweigh not having the tags at all? To that end, is there an easy way to create a meta variable that will strip out quotes and other unwanted characters or symbols?
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 10:12 am
If it's that it should be fine, but I suspect that with some setups certain characters will break the meta tag and you'll have half of it displaying at the top of the page.

But yes, it should not be too hard to encode the variable for safe use, the only difference is that it will have to be done in the php files and not in the template files.

I don't have time to do it right now but if you test some things out let us know.
0 Replies
 
AlpineZone
 
  1  
Tue 4 May, 2004 10:15 am
I may if I have time, but my PHP skills are pretty weak. An even cooler approach for a keyword variable would be to take the topic subject and perhaps first 10 words of the initial post and format that correctly with commas between each word. Any PHP gurus up for that challenge? Wink
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 10:18 am
They keyword tag is pretty much useless, and would be even more so if arbitrarily selected (i.e. just the first words, as the good keywords will most likely be about 5 from the first post, scattered through the entire post) so I'd not do that.

What I might end up doing is using the title as the description tag (which is still used by some engines) and maybe the beginning of the post.
0 Replies
 
azz
 
  1  
Tue 4 May, 2004 05:03 pm
Hope you can help...
Firstly thanks for this brill Mod!

Secondly hope I'm not a pain but I'd like to if possible, add all of the features except this one:

11) Remove avatars for guest views (Craven de Kere)

Basically want to keep the site graphically as close as possible to how it is - hope I'm not a pain asking this but which bit's of the mod would I have to leave out?

Also, I am already using this for Sids: (Not even sure if it works tho - how do I tell?)


Code:#
#-----[ OPEN ]------------------------------------------
#

includes/sessions.php

#
#-----[ FIND ]------------------------------------------
#

$SID = 'sid=' . $session_id;

#
#-----[ REPLACE WITH ]------------------------------------------
#

if ( $userdata['session_user_id'] != ANONYMOUS ){
$SID = 'sid=' . $session_id;
} else {
$SID = '';
}

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM


Should I stick with that or revert and go with yours?

Sorry once again for being a pain and hope you can helP!
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 05:07 pm
The part of my mod that removes the avatars for guests is this:

Code:#
#-----[ FIND ]------------------------------------------
#

if ( $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS && $postrow[$i]['user_allowavatar'] )

#
#-----[ REPLACE WITH ]------------------------------------
#

if ( $userdata['session_logged_in'] && $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS && $postrow[$i]['user_allowavatar'] )


That is a change that is made to viewtopic.php

As to the sessions code it looks nearly identical to the one in this mod. If it is working no changes are necessary.
0 Replies
 
azz
 
  1  
Tue 4 May, 2004 05:16 pm
Cor Blimey that was quick!

Yeah - I think the mod was taken from your code anyway(?)

This is gonna sound stupid - but how do I tell the Sids are not showing?
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 05:34 pm
Log out, block cookies and then see if there are SIDs in the URLs (e.g. sid=ad779120e3e8059b8a571cbcf151bddb).

It's normal for them to appear while loggin in etc. But while surfing the forums and topics with cookies blocked and logged out they should also not appear with this mod.
0 Replies
 
azz
 
  1  
Tue 4 May, 2004 05:40 pm
Ah k thanks - thats good it's working!

Once I have installed your MOD, do I have to do anything 'extra' when backing up the database via the admin CP? Is there anything 'different' we should do once your mod has been implemented?
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 05:41 pm
The admin area backup is for the database IIRC. And my mod makes no database alterations.
0 Replies
 
azz
 
  1  
Tue 4 May, 2004 05:43 pm
Thanks - you're a *
(a star!)

:wink:
0 Replies
 
azz
 
  1  
Tue 4 May, 2004 05:53 pm
Sorry... you're probably cursing me!...

I've noticed some files need to be changed in the 'templates/subSilver/' folder - we are using a custom template, so should we make the changes in the template we are using? Also, if I miss out any of your mod that is template specific, which features will I be losing out on?

Sorry for all the questions!
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 05:57 pm
Yes, make the changes to your default template. As to what changes are in the templates I do not recall off the top of my head. And some may be a mixture of both php files plus template changes.
0 Replies
 
azz
 
  1  
Tue 4 May, 2004 08:07 pm
Hi Again...

Hope you can help as I've run into a few probs...

I can't find the last two bits of code in 'viewtopic_body.tpl'

Here is the original code of my version:

Code:

<script language="Javascript" type="text/javascript">
<!--
function create_icq_subsilver(icq_user_addr, icq_status_img, icq_add_img)
{
if( icq_user_addr.length && icq_user_addr.indexOf(" ") == -1 )
{
document.write('<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" style=" background-image: url(\'' + icq_add_img + '\'); background-repeat: no-repeat"><img src="images/spacer.gif" width="3" height="18" alt = "">' + icq_status_img + '<a href="http://wwp.icq.com/scripts/search.dll?to=' + icq_user_addr + '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="{L_ICQ_NUMBER}"></a></td></tr></table>');
}
}
//-->
</script>
<br>
<table cellpadding="2" cellspacing="0" border="0" width="98%" align="center">
<tr>
<td valign="top" width="100%">
<p><b><span class="maintitle">{TOPIC_TITLE}</span></b><br>
</p>
</td>
<td valign="top" align="right" nowrap><span class="genmed">{PAGINATION}</span></td>
</tr>
<tr>
<td valign="top" width="100%"><span class="mediumtext"><a href="{U_INDEX}" ><b><br>
{L_INDEX}</b></a> -> <a href="{U_VIEW_FORUM}"><b>{FORUM_NAME}</b></a></span></td>
<td valign="bottom" align="right" nowrap><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>  <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /><br>
</a></span><br>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0" width="98%" align="center">
<tr>
<td class="tableborder">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
{POLL_DISPLAY}
<tr>
<td class="toprow" nowrap > <span class="toprowtext"> </span>
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td width="186"><span class="toprowtext">  {L_AUTHOR}
</span></td>
<td><span class="toprowtext">   Message</span></td>
<td align="right"> </td>
</tr>
</table>
</td>
</tr>
<!-- BEGIN postrow -->
<tr align="center">
<td class="tableborder" >
<table width="100%" border="0" cellspacing="1" cellpadding="4">
<tr>
<td width="186" valign="top" class="{postrow.ROW_CLASS}" nowrap>
<span class="largetext"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br>
<span class="smalltext">{postrow.POSTER_RANK}<br>
{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br>
<br>
{postrow.POSTER_JOINED}<br>
<a href="search.php?search_author={postrow.POSTER_NAME}" class="postdetails">{postrow.POSTER_POSTS}</a><br>
{postrow.POSTER_FROM}</span></td>
<td valign="top" class="{postrow.ROW_CLASS}"> <span class="smalltext"><b>{postrow.POST_SUBJECT}</b></span>
<p><span class="largetext">{postrow.MESSAGE}</span><br><span class="largetext">{postrow.SIGNATURE}</span><br><span class="smalltext">{postrow.EDITED_MESSAGE}</span></p>
</td>
</tr>
<tr>
<td width="186" height="16" nowrap class="{postrow.ROW_CLASS}"><a href="{postrow.U_MINI_POST}"><img src="{postrow.MINI_POST_IMG}" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" border="0"></a><span class="smalltext">
{postrow.POST_DATE}<span class="mediumtext"> </span></span></td>
<td valign="middle" height="16" class="{postrow.ROW_CLASS}">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td nowrap> {postrow.PROFILE_IMG} {postrow.PM_IMG}
{postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG}
{postrow.YIM_IMG} {postrow.MSN_IMG} {postrow.ICQ_IMG}</td>
<td align="right" nowrap> {postrow.EDIT_IMG} {postrow.QUOTE_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#666666" valign="top" nowrap><img src="images/spacer.gif" width="10" height="1"></td>
</tr>
</table>
<!-- END postrow -->
</td>
</tr>
</table>
<table width="100%" cellspacing="5" cellpadding="5" border="0" bgcolor="#666666">
<tr>
<td align="left" valign="middle" width="98%">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td valign="middle"><span class="toprowtext">  {L_DISPLAY_POSTS}:</span></td>
<td valign="middle"><span class="toprowtext">  {S_SELECT_POST_DAYS} {S_SELECT_POST_ORDER}</span></td>
<td align="left" valign="middle"><span class="toprowtext">  
<input type="image" src="templates/dogWeb/images/gobutton.gif" border="0" align="absmiddle" name="image">
</span></td>
</tr>
</table>
</td>
</tr>
</table>

</td>
</tr>
</table>
<span class="toprowtext">
<table width="100%" border="0" cellpadding="5" cellspacing="5">
<form method="post" action="{S_POST_DAYS_ACTION}">
<tr>
<td align="right" width="2%" nowrap>
<div align="left"><span class="smalltext"><  <a href="{U_VIEW_OLDER_TOPIC}" class="smalltext">Last
Thread</a> | <a href="{U_VIEW_NEWER_TOPIC}" class="smalltext">Next
Thread </a> ></span><span class="smalltext"> </span> </div>
</td>
<td align="right" width="98%"> <span class="genmed">{PAGINATION}</span>
<p><span class="toprowtext"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>  <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" />
</a></span></p>
</td>
</tr>
</form>
</table>
</span>
<table cellpadding="2" cellspacing="0" border="0" width="98%" align="center">
<tr valign="top">
<td align="left">
<div align="center"><nobr><span class="smalltext"><a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a><br>
</span>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td> {JUMPBOX}</td>
</tr>
</table>
</nobr></div>
</td>

<td align="right"> </td>
</tr>
</table>
<br>

<table cellpadding="2" cellspacing="0" border="0" width="98%" align="center">
<tr valign="bottom">
<td align="left">
<div align="center"><span class="smalltext"><b>Forum Rules:</b></span> <br>
<table cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
<td class="tableborder">
<table cellpadding="4" cellspacing="1" border="0" align="left">
<tr>
<td class="row2"><span class="smalltext">{S_AUTH_LIST}</span>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
</div>
<p align="center"><span class="gensmall">{S_WATCH_TOPIC}</span><br>
 <br>
{S_TOPIC_ADMIN}</p>
</td>
</tr>
</table>



And I also couldn't find the code in the 'index_body.tpl'

Again here is the orginal code:

Code:

<table width="98%" border="0" cellspacing="2" cellpadding="2" align="center">
<tr>
<td align="left" width="50%" valign="middle"><span class="smalltext">
<!-- BEGIN switch_user_logged_in -->
<a href="{U_SEARCH_NEW}" >{L_SEARCH_NEW}</a><br>
<a href="{U_SEARCH_SELF}" >{L_SEARCH_SELF}</a>
<!-- END switch_user_logged_in -->
<br>
{CURRENT_TIME}<br>
<!-- BEGIN switch_user_logged_in -->
{LAST_VISIT_DATE}
<!-- END switch_user_logged_in -->
</span></td>
<td align="right" width="50%" valign="bottom">
<p><a href="{U_INDEX}" >{L_INDEX}</a><br>
</p>
<p><span class="smalltext">{TOTAL_POSTS}<br>
{TOTAL_USERS}</span></p>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0" width="98%" align="center">
<tr>
<td class="tableborder">
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr align="center">
<td class="toprow"> </td>
<td width="80%" align="left" class="toprow"><b><span class="toprowtext"> {L_FORUM} </span></b></td>
<td class="toprow"><b><span class="toprowtext"> {L_POSTS} </span></b></td>
<td class="toprow"><b><span class="toprowtext">Threads</span></b></td>
<td nowrap class="toprow"><b><span class="toprowtext"> {L_LASTPOST} </span></b></td>
</tr>
<!-- BEGIN catrow -->
<tr>
<td colspan="5" class="catrow"><a href="{catrow.U_VIEWCAT}" class=catlink>{catrow.CAT_DESC}</a></td>
</tr>
<!-- BEGIN forumrow -->
<tr align="center">
<td valign="middle" class="row1" align="center"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}"></td>
<td align="left" class="row2"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br>
<span class="smalltext"> {catrow.forumrow.FORUM_DESC}<br>
</span></td>
<td class="row1"><span class="smalltext"><font size="2">{catrow.forumrow.POSTS}</font></span></td>
<td class="row2"><span class="smalltext"><font size="2">{catrow.forumrow.TOPICS}</font></span></td>
<td class="row1" align="right" nowrap>
<table width="100%">
<tr>
<td nowrap align="right"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
</table>
</td>
</tr>
<!-- END forumrow -->
<!-- END catrow -->
<tr >
<td colspan="5" class="catrow"><a href="{U_VIEWONLINE}" class="catlink">{L_WHO_IS_ONLINE}</a></td>
</tr>
<tr>
<td colspan="5" class="row2"> <span class="smalltext">{TOTAL_USERS_ONLINE}
  [ <b>{L_WHOSONLINE_ADMIN}</b> ]   [ <b>{L_WHOSONLINE_MOD}</b>
]<br>
{LOGGED_IN_USER_LIST}<br>
{RECORD_USERS}
</span></td>
</tr>
<tr>
<td colspan="5" class="row1"> <span class="smalltext">

{NEWEST_USER} </span></td>
</tr>
<!-- BEGIN switch_user_logged_in -->
<tr>
<td colspan="5" class="catrow">Private Messages</td>
</tr>
<tr align="center" valign="middle">
<td class="row1"> <img src="templates/dogWeb/images/folder_new_big.gif">
</td>
<td colspan="5" class="row2" align="left">
<p><span class="smalltext">{CURRENT_TIME}</span><span class="smalltext"><a href="{U_PRIVATEMSGS}" class="smalltext"><br>
{PRIVATE_MESSAGE_INFO}</a></span></p>
</td>
</tr>
<!-- END switch_user_logged_in -->
</table>
</td>
</tr>
</table>
<table width="98%" cellspacing="0" border="0" align="center" cellpadding="2">
<tr>
<td align="left"><a href="{U_MARK_READ}" >{L_MARK_FORUMS_READ}</a></td>
<td align="right" width="50%"><span class="smalltext"> </span><span class="smalltext">
<a href="{U_LOGIN_LOGOUT}" >{L_LOGIN_LOGOUT}</a> | {S_TIMEZONE}</span></td>
</tr>
<tr>
<td align="center">  </td>
<td align="right" width="50%">
<!-- BEGIN switch_user_logged_out -->
<table border="0" cellpadding="2" cellspacing="0">
<form method="post" action="{S_LOGIN_ACTION}">
<tr>
<td nowrap><span class="smalltext">Login with username and password:</span></td>
</tr>
<tr>
<td nowrap align="center">
<input class="post" type="text" name="username" size="10">
<input class="post" type="password" name="password" size="10">
<b>Auto Login?</b>
<input class="text" type="checkbox" name="autologin" value="ON">
<input type="submit" name="login" value="{L_LOGIN}">
<br>
</td>
</tr>
</form>
</table>
<!-- END switch_user_logged_out -->
</td>
</tr>
</table>
<table cellspacing="3" border="0" align="center" cellpadding="0">
<tr>
<td width="20" align="center"><img src="templates/dogWeb/images/folder_new_big.gif" alt="{L_NEW_POSTS}"/></td>
<td><span class="smalltext">{L_NEW_POSTS}</span></td>
<td>  </td>
<td width="20" align="center"><img src="templates/dogWeb/images/folder_big.gif" alt="{L_NO_NEW_POSTS}"></td>
<td><span class="smalltext">{L_NO_NEW_POSTS}</span></td>
<td>  </td>
<td width="20" align="center"><img src="templates/dogWeb/images/folder_lock_big.gif" alt="{L_FORUM_LOCKED}"></td>
<td><span class="smalltext">A Closed Forum</span></td>
</tr>
</table>
<p><br>



Can you help? If not and I leave out the changes for these files will the rest of the mod still run ok? And if so, which bits will I be missing?

Thanks once again for all your help.
0 Replies
 
Craven de Kere
 
  1  
Tue 4 May, 2004 09:50 pm
Post the parts you want me to help you with and I'll provide instructions.
0 Replies
 
azz
 
  1  
Wed 5 May, 2004 06:34 am
Thanks :-)

In Viewtopic_body.tpl (the top one in my last post) I couldn't find these bits:

Code:
#

#-----[ FIND ]------------------------------------------

#

<td align="right" valign="top" nowrap="nowrap">{JUMPBOX}<span class="gensmall">{S_AUTH_LIST}</span></td>

#

#-----[ REPLACE WITH ]------------------------------------

#

<td align="right" valign="top" nowrap="nowrap">

<!-- BEGIN switch_user_logged_in -->

{JUMPBOX}<span class="gensmall">{S_AUTH_LIST}</span>

<!-- END switch_user_logged_in -->

</td>



#

#-----[ FIND ]------------------------------------------

#

<span class="nav"><a href="{U_VIEW_OLDER_TOPIC}" class="nav">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav">{L_VIEW_NEXT_TOPIC}</a>  </span>

#

#-----[ REPLACE WITH ]------------------------------------

#

<!-- BEGIN switch_user_logged_in -->

<span class="nav"><a href="{U_VIEW_OLDER_TOPIC}" class="nav">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav">{L_VIEW_NEXT_TOPIC}</a>  </span>

<!-- END switch_user_logged_in -->



And in index_body.tpl I couldn't find this one:

Code:
#

#-----[ FIND ]------------------------------------------

#

<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">

<tr>

<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>

</tr>

<tr>

<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/subSilver/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>

<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>

</td>

</tr>

<tr>

<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>

</tr>

</table>

<table width="100%" cellpadding="1" cellspacing="1" border="0">

<tr>

<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>

</tr>

</table>

#

#-----[ REPLACE WITH ]------------------------------------

#

<!-- BEGIN switch_user_logged_in -->

<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">

<tr>

<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>

</tr>

<tr>

<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/subSilver/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>

<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>

</td>

</tr>

<tr>

<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>

</tr>

</table>

<table width="100%" cellpadding="1" cellspacing="1" border="0">

<tr>

<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>

</tr>

</table>

<!-- END switch_user_logged_in -->



#

#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------




Also in overall_header.tpl - there was a slight variation in the exisitng code for this bit:

Code:
#
#-----[ FIND ]------------------------------------------
#

<title>{SITENAME} :: {PAGE_TITLE}</title>

#
#-----[ REPLACE WITH ]------------------------------------
#

<title>{PAGE_TITLE}</title>


Basically the
<title>{SITENAME} :: {PAGE_TITLE}</title>

was like this
<title>{SITENAME} -- {PAGE_TITLE}</title>

It had two hypens in the middle instead of two colons - I changed it anyway as I figured it'd be ok?

Thanks once again for all your help!

P.s also whilst I got you attention.. am I right to assume that all the changes in your mod only affect 'guests' (ie people not logged in)? And when anyone logs in it's exactly like normal (i.e b4 the mod was implemented?) thanks.
0 Replies
 
azz
 
  1  
Wed 5 May, 2004 07:11 pm
Do you need any further info?
0 Replies
 
 

Related Topics

SEO - Going from 0 PR on up - Discussion by jespah
How Rich Pins work ??? - Question by OnceUponAtime
Need a bit of Google advice - Question by bible quizzer
Google Indexing Issue - Question by brainstudioz
Bing Search results - Discussion by iankyra
What is best way for Off-Page seo in 2017? - Question by honesttravel1
 
Copyright © 2024 MadLab, LLC :: Terms of Service :: Privacy Policy :: Page generated in 0.16 seconds on 11/27/2024 at 08:57:33