<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Invisible</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Invisible]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 11 Apr 2026 21:06:34 +0000</pubDate>
  <lastBuildDate>Fri, 31 Dec 2004 17:28:57 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=1775</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Invisible : here&amp;#039;s a mod that will hide...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post72860.html#72860</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9441">ljamal</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 31&nbsp;December&nbsp;2004 at 5:28pm<br /><br />here's a mod that will hide the categories if there is no forum to display. it works for all database versions.<br /><br /><a href="http://ljamal.com/code/wwf780_hidcatmod.zip" target="_blank">Hidden Category MOD</a>]]>
   </description>
   <pubDate>Fri, 31 Dec 2004 17:28:57 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post72860.html#72860</guid>
  </item> 
  <item>
   <title><![CDATA[Invisible :   I have a solution : I added...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post72826.html#72826</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18700">manf</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 31&nbsp;December&nbsp;2004 at 7:30am<br /><br />I have a solution :<br>I added the following procedure&nbsp; :<br><br><span style="font-family: courier new,courier,mono;"><span style="color: rgb(0, 0, 255);">create procedure selectVisibleForums</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">(</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; @AuthorId int</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">)</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">as</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">begin</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; declare @groupId int ;</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; select @groupId = Group_ID from tblAuthor where &nbsp;&nbsp;&nbsp; Author_ID=@AuthorId&nbsp;&nbsp; ;</span><br style="color: rgb(0, 0, 255);"><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; select distinct tblForum.* from tblForum , tblPermissions</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; where </span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; ( </span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (tblForum.Hide=0) </span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; OR</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tblPermissions.Forum_ID = tblForum.Forum_ID</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; AND</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tblPermissions.Author_ID = @AuthorId </span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; OR</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tblPermissions.Group_ID = @groupId </span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; )&nbsp;&nbsp;</span>&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;  &nbsp;&nbsp;  &nbsp;&nbsp;  <span style="color: rgb(255, 0, 0);">AND </span></span><span style="font-family: courier new,courier,mono; color: rgb(255, 0, 0);">tblPermissions.&#091;Read&#093;=1</span><br><span style="font-family: courier new,courier,mono;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(0, 0, 255);">)</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; )</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">&nbsp;&nbsp;&nbsp; order by tblForum.Cat_ID ;</span><br style="color: rgb(0, 0, 255);"><span style="color: rgb(0, 0, 255);">end ;</span><br><br></span>Of course, you must adapt that to your table names, and it won't work for Access DB (yet, adapting it should be fairly simple).<br><br>This procedure will return you the details of all forums the user is allowed to see, ordered by forum category.<br><br>Updated 04/01/2005 : I added the <span style="font-family: courier new,courier,mono;"><span style="color: rgb(255, 0, 0);">AND </span></span><span style="font-family: courier new,courier,mono; color: rgb(255, 0, 0);">tblPermissions.Read=1 </span>in the Where clause.<span style="font-size:10px"><br /><br />Edited by manf - 05&nbsp;January&nbsp;2005 at 11:14am</span>]]>
   </description>
   <pubDate>Fri, 31 Dec 2004 07:30:24 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post72826.html#72826</guid>
  </item> 
  <item>
   <title><![CDATA[Invisible : I also encountered the problem...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post72771.html#72771</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18700">manf</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 30&nbsp;December&nbsp;2004 at 11:29am<br /><br />I also encountered the problem and changed the code in the default.asppage (so it does not show the categories with only invisible forums).<br><br>However I still have troubles with two features which makes the 'invisible forums' not fully invisible :<br><br>- the text search (which may return topics from invisible forums in the search results)<br>- the drop-lists to quick-go to a forum or to move a topic to anoter forum.<br><br>I will try to find a more generic way to list only the forums visible by the user (coming soon).<br><br><span style="font-style: italic;">Amicalement ..</span><br><span style="font-size:10px"><br /><br />Edited by manf - 31&nbsp;December&nbsp;2004 at 9:15am</span>]]>
   </description>
   <pubDate>Thu, 30 Dec 2004 11:29:17 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post72771.html#72771</guid>
  </item> 
  <item>
   <title><![CDATA[Invisible : There is a mod. the function is suppose...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post46159.html#46159</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13710">india</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 11&nbsp;January&nbsp;2004 at 2:50pm<br /><br /><P>There is a mod. the function is</P><P>suppose there is a category with 1 forum which is not accessible to u, it wont display u that category only.. ys if its more than 1 forum n only 1 forum not acessible 2 u it wont work</P>]]>
   </description>
   <pubDate>Sun, 11 Jan 2004 14:50:28 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post46159.html#46159</guid>
  </item> 
  <item>
   <title><![CDATA[Invisible : I dont get it, how can you hide...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post46138.html#46138</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14502">Guerriero4</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 11&nbsp;January&nbsp;2004 at 2:28pm<br /><br />I dont get it, how can you hide a whole category???]]>
   </description>
   <pubDate>Sun, 11 Jan 2004 14:28:32 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post46138.html#46138</guid>
  </item> 
  <item>
   <title><![CDATA[Invisible : Yes that&#180;s working. Thank you...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post8134.html#8134</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9358">jabbasabba</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 12&nbsp;April&nbsp;2003 at 7:46am<br /><br /><P><strong>Yes thatīs working. Thank you Chris! <IMG src="https://forums.webwiz.net/smileys/smiley4.gif" border="0"></strong></P><P>But is there anyway to get this work without writing spaces for the category title?&nbsp;It should be two alternatives: either you hide a&nbsp;Forum under a specific Category or you can hide the entire&nbsp;Category (inclusive the Forums under that).</P>]]>
   </description>
   <pubDate>Sat, 12 Apr 2003 07:46:18 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post8134.html#8134</guid>
  </item> 
  <item>
   <title><![CDATA[Invisible : One solution could be to name...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post8115.html#8115</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=8619">Chris</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 11&nbsp;April&nbsp;2003 at 11:44pm<br /><br /><P>One solution could be to name the categories to blank spaces, i.e. </P><P>Category 1: _&nbsp; 2: __ 3: ___ 4: _____</P><P>etc where _ stands for a&nbsp;press on your space-key.</P>]]>
   </description>
   <pubDate>Fri, 11 Apr 2003 23:44:00 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post8115.html#8115</guid>
  </item> 
  <item>
   <title><![CDATA[Invisible : In my Webwizforum I have anCategory...]]></title>
   <link>https://forums.webwiz.net/invisible_topic1775_post8079.html#8079</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9358">jabbasabba</a><br /><strong>Subject:</strong> 1775<br /><strong>Posted:</strong> 11&nbsp;April&nbsp;2003 at 3:43pm<br /><br /><FONT size=1>In my Webwizforum I have an&nbsp;Category and itīs invisible to users that isnīt in a specific group. But itīs not entire invisible because when you are not logged in you still can see the Category-Titel. You canīt use the hidden Forum but see the title. So if I have a lot of invisible forum for different groups, everyone still can see the category-title. This could be nagged when you canīt see but just a lot of titles&nbsp;and no Forum to discuss in. </FONT><DIV><FONT face=Verdana></FONT>&nbsp;</DIV><DIV><FONT face=Verdana size=1>So, when you chose to hide a Forum if no access then the Category is also invisible. Because I donīt want anyone who has no access to see that there is a hidden Forum.</FONT></DIV>]]>
   </description>
   <pubDate>Fri, 11 Apr 2003 15:43:13 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/invisible_topic1775_post8079.html#8079</guid>
  </item> 
 </channel>
</rss>