<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WebCards Support Forums &#187; Tag: categories - Recent Posts</title>
<link>http://www.mywebcards.net/forum/</link>
<description>WebCards Support Forums &raquo; Tag: categories - Recent Posts</description>
<language>en</language>
<pubDate>Sat, 11 Feb 2012 13:22:14 +0000</pubDate>

<item>
<title>Jeffsarge on "multiple categories"</title>
<link>http://www.mywebcards.net/forum/topic/multiple-categories#post-1244</link>
<pubDate>Mon, 12 Sep 2011 14:32:51 +0000</pubDate>
<dc:creator>Jeffsarge</dc:creator>
<guid isPermaLink="false">1244@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;thanks!  guess I should have figured that one out.
&#60;/p&#62;</description>
</item>
<item>
<title>shamsenu on "multiple categories"</title>
<link>http://www.mywebcards.net/forum/topic/multiple-categories#post-1239</link>
<pubDate>Sat, 10 Sep 2011 12:44:46 +0000</pubDate>
<dc:creator>shamsenu</dc:creator>
<guid isPermaLink="false">1239@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Yes, i have tried for that its working.&#60;/p&#62;
&#60;p&#62;[URL=http://www.cegonsoft.com/finalyearprojects.php]Cegonsoft[/URL]-content
&#60;/p&#62;</description>
</item>
<item>
<title>corbyboy on "multiple categories"</title>
<link>http://www.mywebcards.net/forum/topic/multiple-categories#post-1238</link>
<pubDate>Fri, 09 Sep 2011 21:31:53 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">1238@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Yes,&#60;/p&#62;
&#60;p&#62;Just hold the Ctrl button as you click each category you want. Let me know if you are using a Mac as it's a different key.
&#60;/p&#62;</description>
</item>
<item>
<title>Jeffsarge on "multiple categories"</title>
<link>http://www.mywebcards.net/forum/topic/multiple-categories#post-1237</link>
<pubDate>Fri, 09 Sep 2011 13:22:08 +0000</pubDate>
<dc:creator>Jeffsarge</dc:creator>
<guid isPermaLink="false">1237@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Is it possible to have a card show up in multiple categories?
&#60;/p&#62;</description>
</item>
<item>
<title>sclabo on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-984</link>
<pubDate>Fri, 22 Apr 2011 15:50:04 +0000</pubDate>
<dc:creator>sclabo</dc:creator>
<guid isPermaLink="false">984@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;It works!&#60;br /&#62;
As soon as I placed the code on the line above $DB-&#38;gt;disconnect(); in the index.php file, it worked perfectly. Thanks again. Wonderful support!
&#60;/p&#62;</description>
</item>
<item>
<title>corbyboy on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-983</link>
<pubDate>Fri, 22 Apr 2011 08:48:48 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">983@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;I have it. I will sort this out through email and see if we can get it sorted.
&#60;/p&#62;</description>
</item>
<item>
<title>sclabo on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-976</link>
<pubDate>Wed, 20 Apr 2011 15:40:20 +0000</pubDate>
<dc:creator>sclabo</dc:creator>
<guid isPermaLink="false">976@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;I responded to your gmail. I hope you received that.
&#60;/p&#62;</description>
</item>
<item>
<title>corbyboy on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-972</link>
<pubDate>Fri, 15 Apr 2011 20:48:12 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">972@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;I have got the dro-down menu working. I will post the code here but let me know if you need any help with this.&#60;/p&#62;
&#60;p&#62;Firstly open up templates/webcards-fresh/template.html. Add this line where you want the category menu to appear:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;{{category_jump}}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Next, open up index.php. Scroll down to the output() function (about line 2459) and add this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$cat_jump = &#38;quot;&#38;lt;form action=\&#38;quot;index.php\&#38;quot; method=\&#38;quot;get\&#38;quot;&#38;gt;&#38;lt;select name=\&#38;quot;cat\&#38;quot;&#38;gt;&#38;quot;;

	$DB-&#38;gt;query(&#38;quot;SELECT title,slug FROM &#38;quot; . $conf[&#38;#39;dbprefix&#38;#39;] . &#38;quot;categories WHERE disabled=0&#38;quot;);

	while($row = $DB-&#38;gt;fetch_array())
	{
		$cat_jump .= &#38;quot;&#38;lt;option value=\&#38;quot;&#38;quot; . $row[&#38;#39;slug&#38;#39;] . &#38;quot;\&#38;quot;&#38;gt;&#38;quot; . $row[&#38;#39;title&#38;#39;] . &#38;quot;&#38;lt;/option&#38;gt;&#38;quot;;
	}

	$cat_jump .= &#38;quot;&#38;lt;/select&#38;gt; &#38;lt;input type=\&#38;quot;submit\&#38;quot; value=\&#38;quot;Go\&#38;quot;&#38;gt;&#38;lt;/form&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Finally, scroll a little further down and find this line:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$script_output = str_replace(&#38;quot;{{lang_style_changer}}&#38;quot;, $lang_style_changer, $script_output);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Add this line so it looks like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$script_output = str_replace(&#38;quot;{{category_jump}}&#38;quot;, $cat_jump, $script_output);
	$script_output = str_replace(&#38;quot;{{lang_style_changer}}&#38;quot;, $lang_style_changer, $script_output);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>corbyboy on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-955</link>
<pubDate>Fri, 08 Apr 2011 21:10:32 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">955@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Collapsible categories is something I have wanted to do right from the start. It is possible to do. The problem occurs when you navigate to a category that is, say, 10 sub-levels deep. It is virtually impossible to get the menu to open up automatically to the right level.&#60;/p&#62;
&#60;p&#62;It is still something I want to do long term but it is on the back burner at the moment.
&#60;/p&#62;</description>
</item>
<item>
<title>sclabo on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-947</link>
<pubDate>Sat, 02 Apr 2011 18:17:39 +0000</pubDate>
<dc:creator>sclabo</dc:creator>
<guid isPermaLink="false">947@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Is there a way to collapse the catagories so that only the main catagories show until a catagory is expanded, as with a tree menu?
&#60;/p&#62;</description>
</item>
<item>
<title>corbyboy on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-886</link>
<pubDate>Thu, 10 Mar 2011 23:36:24 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">886@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Interesting idea. Not something that has been discussed before. Let me look into it and get back to you.
&#60;/p&#62;</description>
</item>
<item>
<title>sclabo on "Category Menu"</title>
<link>http://www.mywebcards.net/forum/topic/category-menu#post-882</link>
<pubDate>Thu, 10 Mar 2011 06:39:53 +0000</pubDate>
<dc:creator>sclabo</dc:creator>
<guid isPermaLink="false">882@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Is there a way to add a dropdown category menu such as a JavaScript menu? If so, is there one posted where I can find it. If none are available, what pages and what code do I need to look for to make one myself?
&#60;/p&#62;</description>
</item>
<item>
<title>corbyboy on "Lost Categories"</title>
<link>http://www.mywebcards.net/forum/topic/lost-categories#post-778</link>
<pubDate>Wed, 08 Dec 2010 21:28:35 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">778@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Andy,&#60;/p&#62;
&#60;p&#62;I have answered this in your email. The child categories haven't actually been deleted, they are just floating around because they are not linked to a parent.
&#60;/p&#62;</description>
</item>
<item>
<title>andy on "Lost Categories"</title>
<link>http://www.mywebcards.net/forum/topic/lost-categories#post-777</link>
<pubDate>Wed, 08 Dec 2010 21:01:12 +0000</pubDate>
<dc:creator>andy</dc:creator>
<guid isPermaLink="false">777@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;And I accidentally deleted the Holiday Cards, a parent category. This wiped out&#60;br /&#62;
all sub-categories. Now when I go back to add the&#60;br /&#62;
subcategories like Christmas, New Years Day, Easter, etc it tells me&#60;br /&#62;
&#34;This category name already exists. Please go back and choose a&#60;br /&#62;
different one&#34; so I can't re due my Holiday Cards categories. I need&#60;br /&#62;
to re due or recover those Holiday Cards!&#60;br /&#62;
Thanks, Andy
&#60;/p&#62;</description>
</item>
<item>
<title>corbyboy on "Categories"</title>
<link>http://www.mywebcards.net/forum/topic/categories#post-167</link>
<pubDate>Wed, 25 Nov 2009 12:38:03 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">167@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;I have got your support ticket. I will handle this problem from there.
&#60;/p&#62;</description>
</item>
<item>
<title>GrannyEstee on "Categories"</title>
<link>http://www.mywebcards.net/forum/topic/categories#post-162</link>
<pubDate>Wed, 11 Nov 2009 21:50:55 +0000</pubDate>
<dc:creator>GrannyEstee</dc:creator>
<guid isPermaLink="false">162@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Let me clarify the post. After adding all my caterogies, only one shows on the drop down list. Only the last one addes shows. If I try to delete them, they show up one at a time, so the categories are there, but for some reason, the drop down box is not working. In the members area, the list of categories only shows one category. &#60;/p&#62;
&#60;p&#62;Every thing else seems to be working fine. I was able to change the colors of text, backgrounds, etc, to match the parent website. &#60;/p&#62;
&#60;p&#62;Thank you for your help. &#60;/p&#62;
&#60;p&#62;Granny
&#60;/p&#62;</description>
</item>
<item>
<title>GrannyEstee on "Categories"</title>
<link>http://www.mywebcards.net/forum/topic/categories#post-159</link>
<pubDate>Tue, 10 Nov 2009 22:06:24 +0000</pubDate>
<dc:creator>GrannyEstee</dc:creator>
<guid isPermaLink="false">159@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;I have added all my categories, but they do not show on the drop lists. When trying to add a category again, it tells me it already exist. &#60;/p&#62;
&#60;p&#62;Thank you for your help.
&#60;/p&#62;</description>
</item>
<item>
<title>corbyboy on "Sorting Categories"</title>
<link>http://www.mywebcards.net/forum/topic/sorting-categories#post-126</link>
<pubDate>Sun, 25 Oct 2009 23:49:33 +0000</pubDate>
<dc:creator>corbyboy</dc:creator>
<guid isPermaLink="false">126@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;It's a feature that's strangely lacking from WebCards. I will get it added to the next version.
&#60;/p&#62;</description>
</item>
<item>
<title>thesalecom on "Sorting Categories"</title>
<link>http://www.mywebcards.net/forum/topic/sorting-categories#post-125</link>
<pubDate>Sun, 25 Oct 2009 17:45:44 +0000</pubDate>
<dc:creator>thesalecom</dc:creator>
<guid isPermaLink="false">125@http://www.mywebcards.net/forum/</guid>
<description>&#60;p&#62;Hi&#60;br /&#62;
With no previous knowledge I've just installed and am running your software.  It took a bit of time to sort out d/b's and how to run a php file (simple when you know how) but everything was running in just 1.5 hours.  Thank you.&#60;/p&#62;
&#60;p&#62;Quck question about Categories.  I've entered a few but they are displaying in the order that I entered them.  Is there a quick way to change the order to alphabetical or re-order them manually?&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
G.
&#60;/p&#62;</description>
</item>

</channel>
</rss>

