myfreeforum.org Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups  Who is OnlineWho is Online   Join! (free) Join! (free)  
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
For an excellent guide to using your myfreeforum forum, you can visit
howtodoit
The howtodoit "readonly" forum provides answers and walkthroughs for all common questions.
  • Welcome
  • Guest


Tweaking the viewtopic_body.tpl for the blog view
Goto page 1, 2  Next
 
Post new topic   Reply to topic    myfreeforum.org Forum Index -> What's new? Announcements!
View previous topic :: View next topic  
Author Message
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46240

Joined: 22 May 2005
Posts: 19680

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Wed Sep 12, 2007 4:45 pm    Post subject: Tweaking the viewtopic_body.tpl for the blog view Reply with quote

When using the new blog forums, the viewing comment link will take you the standard topic thread that uses the viewtopic_body.tpl file. This is functionally correct, but the look does not match the blog template style.

This can be solved fairly easily with some edits to viewtopic_body.tpl.

Remember all templates differ, so this is talking in general terms.

At the top of viewtopic_body.tpl there are two tables for pagination and the forum links. We want the topic of the blog to show beneath that point. So under
of the second table we add:

Code:


<!-- BEGIN postrow -->
<!-- IF S_BLOGVIEW == 1 && postrow.POST_NUMBER == 1 -->
<div class="forumbg forumbg-table">
      <div class="inner"><span class="corners-top"><span></span></span>
<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
   <tr>
      <td width="150" align="left" valign="top" ><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}</span><br /></td>
      
   
      <td width="100%" height="28" valign="top" nowrap="nowrap"><table cellspacing="0" cellpadding="0" border="0" height="18" width="18">
         <tr>
            <td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--

   if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 && navigator.userAgent.indexOf('6.') == -1 )
      document.write(' {ICQ_IMG}');
   else
      document.write('</td><td>&nbsp;</td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{ICQ_STATUS_IMG}</div></div>');
            
            //--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
         </tr>
<tr><td><h2><a name="{postrow.U_POST_ID}"></a>A Blog by - {postrow.POSTER_NAME}</h2><br />{postrow.POSTER_AVATAR}</td></tr>
      </table></td>
   </tr>
   
<tr>
            <td class="{postrow.ROW_CLASS}" colspan="2"><span class="postbody">{postrow.MESSAGE}{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td>
         </tr>

</table>   
<span class="corners-bottom"><span></span></span>
</div></div>

<!-- ENDIF -->
<!-- END postrow -->


This is a loop through all the posts with a test:

<!-- IF S_BLOGVIEW == 1 && postrow.POST_NUMBER == 1 -->

This test asks first is we are looking at a blog topic, and then if the post is the very first post in the thread. If it is then we show the post formatted blog style.


Next at the start of the next table which holds the posts, I replace the first row with:

Code:

<!-- IF S_BLOGVIEW != 1 -->
   <tr align="right">
      <td class="catHead" colspan="2" height="28"><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> &nbsp;</span></td>
   </tr>
<!-- ENDIF -->


All I am doing here is preventing the "view next" and "view prev" topic links appearing in blog view. I don't think they work well in blog view.

Next add a new line after:

<!-- BEGIN postrow -->

Code:

<!-- IF S_BLOGVIEW != 1 || postrow.POST_NUMBER > 1 -->


This is the complement of showing the first post blog style. This time round we want to not show the post. This avoids the first post displaying twice.

Lastly after:

<!-- END postrow -->

We add:


Code:

<!-- ENDIF -->


This code is slightly simplified in that on this forum the tables need a few divs to add the fancy borders. With other templates there may be other little issues like that.

The key is that the macros:

{postrow.POST_NUMBER} thread post number 1 for first post
and
{S_BLOGVIEW} blog view 1 for blog view

are there to be used as you see fit.


_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
archers-rest
Craftsman
Craftsman

Virtual Cash: 550

Joined: 01 Nov 2006
Posts: 405

Add Karma

rated by 1 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 2:00 pm    Post subject: Reply with quote

Sorry couldnt follow that at all, good job I have a back up Wheres Symon and his walk through
_________________
http://archersrest.myfreeforum.org/index.php

http://archersrest.zaphod3.myfreeforum.org/ (PHPBB3)

www.archers-rest.com

www.archers-rest.com
Back to top
View user's profile Private message
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 3:55 pm    Post subject: Reply with quote

archers-rest wrote:
Sorry couldnt follow that at all, good job I have a back up Wheres Symon and his walk through


Well i have made the edits on my test forum but see no change from unedited viewtopic to the edited view topic ?

But i will do a wlakthough.
_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46240

Joined: 22 May 2005
Posts: 19680

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 5:13 pm    Post subject: Reply with quote

Are you sure the forum is set to blog view?

These changes are pretty visible.
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 5:21 pm    Post subject: Reply with quote

admin (no pm's please) wrote:
Are you sure the forum is set to blog view?

These changes are pretty visible.


Yes unless i,ve done the edits wrong

http://testhtml.myfastforum.org

test forum 2

myff_1 is edited view topic

myff_2 is unedited view topic
_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 5:30 pm    Post subject: Reply with quote

Have set editor to myfs_2 the unedited version

guest set to myfs_1 the edited viewtopic version
_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46240

Joined: 22 May 2005
Posts: 19680

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 6:04 pm    Post subject: Reply with quote

Okay,

The edits are wrong, you have created a postrow loop with

<!-- IF S_BLOGVIEW != 1 || postrow.POST_NUMBER > 1 -->
<!-- IF S_BLOGVIEW == 1 && postrow.POST_NUMBER == 1 -->


at the start. This should just be:

<!-- IF S_BLOGVIEW == 1 && postrow.POST_NUMBER == 1 -->

on the second original postrow loop you need:

<!-- IF S_BLOGVIEW != 1 || postrow.POST_NUMBER > 1 -->
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 6:12 pm    Post subject: Reply with quote

admin (no pm's please) wrote:
Okay,

The edits are wrong, you have created a postrow loop with

<!-- IF S_BLOGVIEW != 1 || postrow.POST_NUMBER > 1 -->
<!-- IF S_BLOGVIEW == 1 && postrow.POST_NUMBER == 1 -->


at the start. This should just be:

<!-- IF S_BLOGVIEW == 1 && postrow.POST_NUMBER == 1 -->

on the second original postrow loop you need:

<!-- IF S_BLOGVIEW != 1 || postrow.POST_NUMBER > 1 -->


Ok i sorted that but i see no difference so either i have edited major wrong or i,m going blind.

edited version of viewtopic is

Spoiler:

Code:
<table width="100%" border="1" cellspacing="0" cellpadding="2">
<tr>
<td class="maintitle" valign="top">&nbsp;<a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></td>
<!-- IF S_BLOGVIEW != 1 -->
   <tr align="right">
      <td class="catHead" colspan="2" height="28"><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> &nbsp;</span></td>
   </tr>
<!-- ENDIF -->
</table>


<table width="100%" border="0" cellspacing="0" cellpadding="0">
   <tr>
      <td><img src="images/spacer.gif" alt="" width="15" height="26" /></td>
      <td valign="bottom">
         <table border="0" cellspacing="0" cellpadding="0">
            <tr>
               <td><img src="templates/myfs_testhtml1/images/lang_english/tabt.gif" alt="" width="80" height="6" /></td>
               <td><img src="templates/myfs_testhtml1/images/lang_english/tabt.gif" alt="" width="80" height="6" /></td>
            </tr>
            <tr>
               <td class="postbkg"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" title="{L_POST_NEW_TOPIC}" /></a></td>
               <td class="postbkg"><a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" title="{L_POST_REPLY_TOPIC}" /></a></td>
            </tr>
         </table>
      </td>
      <td class="nav" width="100%">&nbsp;&nbsp;&nbsp;<a href="{U_INDEX}">{L_INDEX}</a> &raquo; <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></td>
      <td class="nav" nowrap="nowrap">{PAGINATION}&nbsp;</td>
   </tr>
</table>

<!-- BEGIN postrow -->

<!-- IF S_BLOGVIEW == 1 && postrow.POST_NUMBER == 1 -->
<div class="forumbg forumbg-table">
      <div class="inner"><span class="corners-top"><span></span></span>
<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
   <tr>
      <td width="150" align="left" valign="top" ><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}</span><br /></td>
     
   
      <td width="100%" height="28" valign="top" nowrap="nowrap"><table cellspacing="0" cellpadding="0" border="0" height="18" width="18">
         <tr>
            <td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--

   if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 && navigator.userAgent.indexOf('6.') == -1 )
      document.write(' {ICQ_IMG}');
   else
      document.write('</td><td>&nbsp;</td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{ICQ_STATUS_IMG}</div></div>');
           
            //--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
         </tr>
<tr><td><h2><a name="{postrow.U_POST_ID}"></a>A Blog by - {postrow.POSTER_NAME}</h2><br />{postrow.POSTER_AVATAR}</td></tr>
      </table></td>
   </tr>
   
<tr>
            <td class="{postrow.ROW_CLASS}" colspan="2"><span class="postbody">{postrow.MESSAGE}{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td>
         </tr>

</table>   
<span class="corners-bottom"><span></span></span>
</div></div>

<!-- ENDIF -->
<!-- END postrow -->





{POLL_DISPLAY}

<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
<tr>
<th width="150" height="28">{L_AUTHOR}</th>
<th width="100%">{L_MESSAGE}</th>
</tr>
<!-- BEGIN postrow -->
<!-- IF S_BLOGVIEW != 1 || postrow.POST_NUMBER > 1 -->
<tr>
<td valign="top" class="{postrow.ROW_CLASS}" rowspan="2"><span class="name"><a name="{postrow.U_POST_ID}" id="{postrow.U_POST_ID}"></a><strong>{postrow.POSTER_NAME}</strong></span><br />
<span class="postdetails">{postrow.POSTER_RANK}<br />
{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />
{postrow.POSTER_JOINED}<br />
{postrow.POSTER_POSTS}<br />
{postrow.POSTER_FROM}</span><br />
<img src="images/spacer.gif" alt="" width="150" height="1" />
</td>
<td class="{postrow.ROW_CLASS}" valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="postdetails"><a href="{postrow.U_MINI_POST}"><img src="{postrow.MINI_POST_IMG}" border="0" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" /></a>{L_POSTED}:
{postrow.POST_DATE}</td>
<td align="right" valign="top" nowrap="nowrap">{postrow.QUOTE_IMG}{postrow.EDIT_IMG}<a href="#top"><img src="templates/myfs_testhtml1/images/icon_up.gif" alt="{L_BACK_TO_TOP}" border="0" width="24" height="23" title="{L_BACK_TO_TOP}" /></a>{postrow.DELETE_IMG}{postrow.IP_IMG}</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" class="postbody">
<hr />
{postrow.MESSAGE}</td>
</tr>
<tr>
<td height="40" valign="bottom" class="genmed">{postrow.SIGNATURE}<span class="postdetails">{postrow.EDITED_MESSAGE}</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" class="{postrow.ROW_CLASS}">{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>
</tr>
<tr>
<td class="spacerow" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<!-- END postrow -->
<!-- ENDIF -->
<tr>
<td colspan="2" align="center" class="cat">
<form method="post" action="{S_POST_DAYS_ACTION}">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="gensmall">{L_DISPLAY_POSTS}:&nbsp;&nbsp;</td>
<td>{S_SELECT_POST_DAYS}&nbsp;</td>
<td>{S_SELECT_POST_ORDER}&nbsp;</td>
<td><input type="submit" value="{L_GO}" class="catbutton" name="submit" /></td>
</tr>
</table>
</form>
</td>
</tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
   <tr>
      <td><img src="images/spacer.gif" alt="" width="15" height="26" /></td>
      <td valign="top">
         <table border="0" cellspacing="0" cellpadding="0">
            <tr>
               <td><img src="templates/myfs_testhtml1/images/lang_english/tabsp.gif" alt="" width="80" height="2" /></td>
               <td><img src="templates/myfs_testhtml1/images/lang_english/tabsp.gif" alt="" width="80" height="2" /></td>
            </tr>
            <tr>
               <td class="postbkg"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" title="{L_POST_NEW_TOPIC}" /></a></td>
               <td class="postbkg"><a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" title="{L_POST_REPLY_TOPIC}" /></a></td>
            </tr>
            <tr>
               <td><img src="templates/myfs_testhtml1/images/lang_english/tabb.gif" alt="" width="80" height="6" /></td>
               <td><img src="templates/myfs_testhtml1/images/lang_english/tabb.gif" alt="" width="80" height="6" /></td>
            </tr>
         </table>
      </td>
      <td class="nav" width="100%">&nbsp;&nbsp;&nbsp;<a href="{U_INDEX}">{L_INDEX}</a> &raquo; <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></td>
      <td class="nav" nowrap="nowrap">{PAGINATION}&nbsp;</td>
   </tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td><br />
<br />
{JUMPBOX}<br />
<br />
{S_TOPIC_ADMIN}</td>


<td class="gensmall" align="right" valign="top"><strong>{S_WATCH_TOPIC}</strong><br />
<a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a><br />
<a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a><br />
{S_AUTH_LIST}</td>
</tr>
</table>


_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46240

Joined: 22 May 2005
Posts: 19680

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 6:23 pm    Post subject: Reply with quote

Both guest and editor seemed to be on template2 where template1 has the edits.
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 6:31 pm    Post subject: Reply with quote

admin (no pm's please) wrote:
Both guest and editor seemed to be on template2 where template1 has the edits.


Sorry that was me i kept switching trying to see a difference and i still can not. are the edits correct now ? if so i can provide screen shots
_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46240

Joined: 22 May 2005
Posts: 19680

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 8:19 pm    Post subject: Reply with quote

I see the edits ok here:

http://testhtml.myfastforum.org/about20.html
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Sep 14, 2007 8:32 pm    Post subject: Reply with quote

Ahh i see now sorry was looking at different view had not clicked the view post comment view.

Ok that was easy enough then.
_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Sat Sep 15, 2007 12:07 pm    Post subject: Reply with quote

Ok Sorry about the delay been a busy week.

Guide to what a blog is (open to suggestions to improve)

http://howtodoit.myfreeforum.org/...component=content&topicid=704


Walkthough for the edit that needs to be made.

http://howtodoit.myfreeforum.org/...component=content&topicid=706
_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46240

Joined: 22 May 2005
Posts: 19680

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Sat Sep 15, 2007 1:00 pm    Post subject: Reply with quote

thanks for that
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
archers-rest
Craftsman
Craftsman

Virtual Cash: 550

Joined: 01 Nov 2006
Posts: 405

Add Karma

rated by 1 members
Add Comment
Show Comments

online/offline
PostPosted: Sat Sep 15, 2007 1:04 pm    Post subject: Reply with quote

Thanks Symon
_________________
http://archersrest.myfreeforum.org/index.php

http://archersrest.zaphod3.myfreeforum.org/ (PHPBB3)

www.archers-rest.com

www.archers-rest.com
Back to top
View user's profile Private message
Display posts from previous:   
Post new topic   Reply to topic    myfreeforum.org Forum Index -> What's new? Announcements! All times are GMT + 1 Hour
Goto page 1, 2  Next
Page 1 of 2
 
 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Card File  Gallery  Forum Archive
Powered by phpBB © 2001, 2005 phpBB Group
Create your own free forum | Buy a domain to use with your forum