SaN-DeeP
08-02-2004, 09:48 PM
Since Past few days I haven learnt that i am getting maximum guests via my Archive.
Seems the search spiders index my archive :), and users come via those links.
But the problem is the default display of archive confuses them and they dont not go any further to forums.
I want to change my archive.
Need to display the current thread title and displaying users to check the full version in big font
Example here - http://www.monstergamer.net/vb/search/topic/3065-1.html (http://www.monstergamer.net/vb/search/topic/3065-1.html)
I am using a conditional on my forums, disallowing users with less then 10 posts to see the content behind the Code Tags.
<if condition="$bbuserinfo[userid] == 0">
<b>Unregistered users OR users with less then 10 posts
are not allowed to view the contents of this post. Please <a href="<A href="http://forums.mydomain.com/register.php?">register</a">http://forums.mydomain.com/register.php?">register</a> here.</b></if>
<if condition="$bbuserinfo[posts] < 10">
<b>Users with less then 10 posts are not allowed to view the contents of this post.</b></if>
above code is not working and any registered user with 0 posts is able to view the content behind code tags easily
I want to display these messages:
<b>Unregistered users OR users with less then 10 posts
are not allowed to view the contents of this post. Please <a href="<A href="http://forums.mydomain.com/register.php?">register</a">http://forums.mydomain.com/register.php?">register</a> here.</b>
this will be for unregistered users
and
<b>Users with less then 10 posts are not allowed to view the contents of this post.</b>
this for registered users with less then 10 posts.
Looking for positive replies :)
Sandy...
Seems the search spiders index my archive :), and users come via those links.
But the problem is the default display of archive confuses them and they dont not go any further to forums.
I want to change my archive.
Need to display the current thread title and displaying users to check the full version in big font
Example here - http://www.monstergamer.net/vb/search/topic/3065-1.html (http://www.monstergamer.net/vb/search/topic/3065-1.html)
I am using a conditional on my forums, disallowing users with less then 10 posts to see the content behind the Code Tags.
<if condition="$bbuserinfo[userid] == 0">
<b>Unregistered users OR users with less then 10 posts
are not allowed to view the contents of this post. Please <a href="<A href="http://forums.mydomain.com/register.php?">register</a">http://forums.mydomain.com/register.php?">register</a> here.</b></if>
<if condition="$bbuserinfo[posts] < 10">
<b>Users with less then 10 posts are not allowed to view the contents of this post.</b></if>
above code is not working and any registered user with 0 posts is able to view the content behind code tags easily
I want to display these messages:
<b>Unregistered users OR users with less then 10 posts
are not allowed to view the contents of this post. Please <a href="<A href="http://forums.mydomain.com/register.php?">register</a">http://forums.mydomain.com/register.php?">register</a> here.</b>
this will be for unregistered users
and
<b>Users with less then 10 posts are not allowed to view the contents of this post.</b>
this for registered users with less then 10 posts.
Looking for positive replies :)
Sandy...