<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged tag</title>
<link>http://www.question2answer.org/qa/tag/tag</link>
<description>Powered by Question2Answer</description>
<item>
<title>Redundant DIV Tag ?</title>
<link>http://www.question2answer.org/qa/23915/redundant-div-tag</link>
<description>

&lt;p&gt;
	qa-include/qa-theme-base.php&lt;/p&gt;


&lt;p&gt;
	Before:&lt;/p&gt;


&lt;blockquote&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;function widgets($region, $place)&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;/*&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;Output the widgets (as provided in $this-&amp;gt;content['widgets']) for $region and $place&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;*/&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;{&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; if (count(@$this-&amp;gt;content['widgets'][$region][$place])) {&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; $this-&amp;gt;output('&amp;lt;DIV CLASS=&quot;qa-widgets-'.$region.' qa-widgets-'.$region.'-'.$place.'&quot;&amp;gt;');&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; foreach ($this-&amp;gt;content['widgets'][$region][$place] as $module) {&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;output('&amp;lt;DIV CLASS=&quot;qa-widget-'.$region.' qa-widget-'.$region.'-'.$place.'&quot;&amp;gt;');&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $module-&amp;gt;output_widget($region, $place, $this, $this-&amp;gt;template, $this-&amp;gt;request, $this-&amp;gt;content);&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;output('&amp;lt;/DIV&amp;gt;');&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; $this-&amp;gt;output('&amp;lt;/DIV&amp;gt;', '');&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; }&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;}&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;
	After:&lt;/p&gt;


&lt;blockquote&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;function widgets($region, $place)&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;/*&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;Output the widgets (as provided in $this-&amp;gt;content['widgets']) for $region and $place&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;*/&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;{&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; if (count(@$this-&amp;gt;content['widgets'][$region][$place])) {&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; $this-&amp;gt;output('&amp;lt;DIV CLASS=&quot;qa-widgets-'.$region.' qa-widgets-'.$region.'-'.$place.'&quot;&amp;gt;');&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; foreach ($this-&amp;gt;content['widgets'][$region][$place] as $module)&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $module-&amp;gt;output_widget($region, $place, $this, $this-&amp;gt;template, $this-&amp;gt;request, $this-&amp;gt;content);&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; &amp;nbsp; $this-&amp;gt;output('&amp;lt;/DIV&amp;gt;', '');&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;&amp;nbsp; }&lt;/span&gt;&lt;/div&gt;
	

&lt;div&gt;
		&lt;span style=&quot;font-size:10px;&quot;&gt;}&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/23915/redundant-div-tag</guid>
<pubDate>Sat, 18 May 2013 01:32:35 +0000</pubDate>
</item>
<item>
<title>New Plugin: Expert by Tags (Page) - early alpha</title>
<link>http://www.question2answer.org/qa/23001/new-plugin-expert-by-tags-page-early-alpha</link>
<description>

&lt;h1&gt;
	&lt;span style=&quot;font-size:14px;&quot;&gt;&lt;span style=&quot;font-family: arial,helvetica,sans-serif;&quot;&gt;Download: &lt;A HREF=&quot;https://github.com/echteinfachtv/q2a-expert-by-tags&quot; rel=&quot;nofollow&quot;&gt;https://github.com/echteinfachtv/q2a-expert-by-tags&lt;/A&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br&gt;
	&amp;nbsp;&lt;/h1&gt;


&lt;h1&gt;
	Question2Answer Expert by Tags v0.1&lt;/h1&gt;


&lt;div&gt;
	

&lt;h2&gt;
		Description&lt;/h2&gt;
	

&lt;p&gt;
		This is a plugin for &lt;strong&gt;Question2Answer&lt;/strong&gt; that displays the top 10 tags of questions answered by a user as best answer.&lt;/p&gt;
&lt;/div&gt;


&lt;div&gt;
	

&lt;h2&gt;
		Features&lt;/h2&gt;
	

&lt;ul&gt;
		

&lt;li&gt;
			early alpha!&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;


&lt;div&gt;
	

&lt;h2&gt;
		Installation&lt;/h2&gt;
	

&lt;ol&gt;
		

&lt;li&gt;
			Install &lt;a href=&quot;http://www.question2answer.org/install.php&quot; rel=&quot;nofollow&quot;&gt;Question2Answer&lt;/a&gt;&lt;/li&gt;
		

&lt;li&gt;
			Get the source code for this plugin directly from &lt;a href=&quot;https://github.com/echteinfachtv/q2a-expert-by-tags.git&quot; rel=&quot;nofollow&quot;&gt;github&lt;/a&gt;&lt;/li&gt;
		

&lt;li&gt;
			Extract the files.&lt;/li&gt;
		

&lt;li&gt;
			Upload the files to a subfolder called &lt;tt&gt;expert-by-tags&lt;/tt&gt; inside the &lt;tt&gt;qa-plugin&lt;/tt&gt; folder of your Q2A installation.&lt;/li&gt;
		

&lt;li&gt;
			Navigate to your site, go to &lt;strong&gt;Admin -&amp;gt; Plugins&lt;/strong&gt; on your q2a install. Check if plugin &quot;Expert by Tags&quot; is listed.&lt;/li&gt;
		

&lt;li&gt;
			Navigate to &lt;span style=&quot;color:#ff0000;&quot;&gt;yourdomain.com/expertbytags&lt;/span&gt; and specifiy a username in the URL, such as &lt;span style=&quot;color:#ff0000;&quot;&gt;yourdomain.com/expertbytags?user=HotPeter&lt;/span&gt;&lt;/li&gt;
	&lt;/ol&gt;
&lt;/div&gt;


&lt;div&gt;
	

&lt;h2&gt;
		Disclaimer&lt;/h2&gt;
	

&lt;p&gt;
		This is &lt;strong&gt;early alpha&lt;/strong&gt; code. It is probably okay for production environments, but may not work exactly as expected. You bear the risk. Refunds will not be given!&lt;/p&gt;
	

&lt;p&gt;
		This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.&lt;/p&gt;
&lt;/div&gt;


&lt;div&gt;
	

&lt;h2&gt;
		Copyright&lt;/h2&gt;
	

&lt;p&gt;
		All code herein is &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot; rel=&quot;nofollow&quot;&gt;OpenSource&lt;/a&gt;. Feel free to build upon it and share with the world.&lt;/p&gt;
&lt;/div&gt;


&lt;div&gt;
	

&lt;h2&gt;
		About q2a&lt;/h2&gt;
	

&lt;p&gt;
		Question2Answer is a free and open source platform for Q&amp;amp;A sites. For more information, visit: &lt;a href=&quot;http://www.question2answer.org&quot; rel=&quot;nofollow&quot;&gt;www.question2answer.org&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;


&lt;div&gt;
	

&lt;h2&gt;
		Final Note&lt;/h2&gt;
	

&lt;p&gt;
		If you use the plugin: + Consider joining the &lt;a href=&quot;http://www.question2answer.org/qa/&quot; rel=&quot;nofollow&quot;&gt;Question2Answer-Forum&lt;/a&gt;, answer some questions or write your own plugin! + You can use the code of this plugin to learn more about q2a-plugins. It is commented code. + Thanks!&lt;/p&gt;
&lt;/div&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	---&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;color:#0000ff;&quot;&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;Example Output on page: &lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;


&lt;h1&gt;
	&lt;span style=&quot;font-size:14px;&quot;&gt;Expert by Tags&lt;/span&gt;&lt;/h1&gt;


&lt;p&gt;
	User: HotPeter&lt;/p&gt;


&lt;table&gt;
	

&lt;thead&gt;
		

&lt;tr&gt;
			

&lt;th style=&quot;width:70px;&quot;&gt;
				Count&lt;/th&gt;
			

&lt;th style=&quot;min-width:100px;&quot;&gt;
				Tag Name&lt;/th&gt;
		&lt;/tr&gt;
	&lt;/thead&gt;
	

&lt;tbody&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				52&lt;/td&gt;
			

&lt;td&gt;
				gleichung&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				45&lt;/td&gt;
			

&lt;td&gt;
				funktion&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				29&lt;/td&gt;
			

&lt;td&gt;
				lineare&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				26&lt;/td&gt;
			

&lt;td&gt;
				quadratische&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				25&lt;/td&gt;
			

&lt;td&gt;
				berechnen&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				24&lt;/td&gt;
			

&lt;td&gt;
				gleichungen&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				20&lt;/td&gt;
			

&lt;td&gt;
				funktionen&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				18&lt;/td&gt;
			

&lt;td&gt;
				textaufgabe&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				17&lt;/td&gt;
			

&lt;td&gt;
				zahlen&lt;/td&gt;
		&lt;/tr&gt;
		

&lt;tr&gt;
			

&lt;td&gt;
				15&lt;/td&gt;
			

&lt;td&gt;
				wurzel&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/23001/new-plugin-expert-by-tags-page-early-alpha</guid>
<pubDate>Wed, 10 Apr 2013 09:18:44 +0000</pubDate>
</item>
<item>
<title>New Plugin: Tag Followers Widget</title>
<link>http://www.question2answer.org/qa/22599/new-plugin-tag-followers-widget</link>
<description>

&lt;p&gt;
	&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;This plugin-widget add tag followers list&lt;/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;.&amp;nbsp;Refer to readme in download-file for detailed usage.&lt;/span&gt;&lt;/p&gt;


&lt;ul style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	

&lt;li style=&quot;margin-top: 0px;&quot;&gt;
		&lt;a href=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=1955712272237057104&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot; target=&quot;_blank&quot;&gt;Screen shot 1&lt;/a&gt;: admin -&amp;gt; plugins&lt;/li&gt;
	

&lt;li style=&quot;margin-top: 0px;&quot;&gt;
		&lt;a href=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=8914207464017851971&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot; target=&quot;_blank&quot;&gt;Screen shot 2&lt;/a&gt;: admin -&amp;gt; plugins -&amp;gt; options&lt;/li&gt;
	

&lt;li style=&quot;margin-top: 0px;&quot;&gt;
		&lt;a href=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=12649549339943471865&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot; target=&quot;_blank&quot;&gt;Screen shot 3&lt;/a&gt;: Widget View sample&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;


&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&lt;strong&gt;&lt;a href=&quot;http://cmsbox.jp/archive/download.php?t=d&amp;amp;i=37&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot;&gt;Download&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;


&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&amp;nbsp;&lt;/div&gt;


&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	This plugin shows simply avatar and name without user's description.&amp;nbsp;I will publish on&amp;nbsp;&lt;a href=&quot;http://www.question2answer.org/addons.php&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot;&gt;add-on page&lt;/a&gt;of Q2A after exam time in this thread.&lt;/div&gt;


&lt;div style=&quot;color: rgb(51, 51, 51); font-family: Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	

&lt;div&gt;
		&amp;nbsp;&lt;/div&gt;
	

&lt;div&gt;
		Related plugin:&amp;nbsp;&lt;/div&gt;
	

&lt;ul&gt;
		

&lt;li&gt;
			&lt;a href=&quot;http://www.question2answer.org/qa/22181&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot;&gt;Follow Users Widget&lt;/a&gt;&lt;/li&gt;
		

&lt;li&gt;
			&lt;a href=&quot;http://www.question2answer.org/qa/22407&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot;&gt;My Follower Page&lt;/a&gt;&lt;/li&gt;
		

&lt;li&gt;
			&lt;a href=&quot;http://www.question2answer.org/qa/22500&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot;&gt;My Followers Widget&lt;/a&gt;&lt;/li&gt;
		

&lt;li&gt;
			&lt;a href=&quot;http://www.question2answer.org/qa/22550&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot;&gt;Category Followers Widget&lt;/a&gt;&lt;/li&gt;
		

&lt;li&gt;
			&lt;a href=&quot;http://www.question2answer.org/qa/22774&quot; rel=&quot;nofollow&quot; style=&quot;text-decoration: none; color: rgb(0, 102, 153);&quot;&gt;Question Followers Widget&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	

&lt;div&gt;
		Best regards&lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/22599/new-plugin-tag-followers-widget</guid>
<pubDate>Mon, 25 Mar 2013 04:26:17 +0000</pubDate>
</item>
<item>
<title>I want to use first tag of question in page-title in question page</title>
<link>http://www.question2answer.org/qa/22095/want-use-first-tag-of-question-in-page-title-in-question-page</link>
<description>I want to use first tag of question in page-title in question page How can I do that?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/22095/want-use-first-tag-of-question-in-page-title-in-question-page</guid>
<pubDate>Mon, 11 Mar 2013 12:13:52 +0000</pubDate>
</item>
<item>
<title>How to edit a tag in all question?</title>
<link>http://www.question2answer.org/qa/21047/how-to-edit-a-tag-in-all-question</link>
<description>I want to edit a tag in all question that it is appeared on them. How can i do it?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/21047/how-to-edit-a-tag-in-all-question</guid>
<pubDate>Fri, 01 Feb 2013 12:32:20 +0000</pubDate>
</item>
<item>
<title>Tag description not working and showing wrong tooltip</title>
<link>http://www.question2answer.org/qa/20814/tag-description-not-working-and-showing-wrong-tooltip</link>
<description>

&lt;p&gt;
	I have installed the tag description plugin, through which, I wanted to add some content and info related to particular tags manually. But I can't find any options to edit the tag description. And, when I try to hold a mouse over the tag for tooltip, It shows like this (image below):&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=930088183708654053&quot;&gt;&lt;/p&gt;


&lt;p&gt;
	Whats the problem with this? Is this plugin no longer works?&lt;/p&gt;


&lt;p&gt;
	Installed plugins are:&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=4869285875877593979&quot;&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/20814/tag-description-not-working-and-showing-wrong-tooltip</guid>
<pubDate>Wed, 23 Jan 2013 13:26:57 +0000</pubDate>
</item>
<item>
<title>Can a tag have a space ?</title>
<link>http://www.question2answer.org/qa/19423/can-a-tag-have-a-space</link>
<description>Wondering if a tag can have a space ? Like &amp;quot;star wars&amp;quot; ??? And will search work ( without hyphens ) if we have to use hyphen when defining the tag ?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/19423/can-a-tag-have-a-space</guid>
<pubDate>Sun, 25 Nov 2012 13:41:13 +0000</pubDate>
</item>
<item>
<title>tag in single file</title>
<link>http://www.question2answer.org/qa/17864/tag-in-single-file</link>
<description>

&lt;p&gt;
	&lt;span class=&quot;short_text&quot; id=&quot;result_box&quot; lang=&quot;en&quot;&gt;&lt;span class=&quot;hps&quot;&gt;tags&lt;/span&gt; &lt;span class=&quot;hps&quot;&gt;arranged&lt;/span&gt; &lt;span class=&quot;hps&quot;&gt;in a single row&lt;/span&gt;&lt;span&gt;?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=15635382770867121659&quot; style=&quot;width: 136px; height: 224px;&quot;&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/17864/tag-in-single-file</guid>
<pubDate>Thu, 20 Sep 2012 01:54:52 +0000</pubDate>
</item>
<item>
<title>How to show questions of two or more tags?</title>
<link>http://www.question2answer.org/qa/16263/how-to-show-questions-of-two-or-more-tags</link>
<description>

&lt;p&gt;
	Is it possible to add tags to show even more related questions?&lt;/p&gt;


&lt;p&gt;
	I tried to add the tags to the URL, e.g.&lt;/p&gt;


&lt;p&gt;
	&lt;A HREF=&quot;http://question2answer.org/qa/tag/&quot; rel=&quot;nofollow&quot;&gt;http://question2answer.org/qa/tag/&lt;/A&gt;&lt;span style=&quot;background-color:#ffff00;&quot;&gt;badges&lt;/span&gt;+&lt;span style=&quot;background-color:#afeeee;&quot;&gt;database&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	which does not work.&lt;/p&gt;


&lt;p&gt;
	Greetings, and have a nice week-end!&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/16263/how-to-show-questions-of-two-or-more-tags</guid>
<pubDate>Fri, 29 Jun 2012 15:21:04 +0000</pubDate>
</item>
<item>
<title>New Feature - label a user as &quot;expert&quot; once they've had a certain number of upvotes based on tag</title>
<link>http://www.question2answer.org/qa/15235/feature-label-user-expert-theyve-certain-number-upvotes-based</link>
<description>I'd like the ability to set a person as an &amp;quot;expert&amp;quot; - maybe decorating their name and logo with a badge indicating as such - when they've been voted up on questions with particular tags related to them.&lt;br /&gt;
&lt;br /&gt;
For example, I answer lots of questions tagged &amp;quot;dotnet&amp;quot; and get lots of upvotes. &amp;nbsp;When I hit X number of upvotes, I'm thought of as an expert in that tag so when people see my responses or comments related to a question with that tag, my name/icon is decorated with something that indicates I'm an &amp;quot;expert&amp;quot;.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/15235/feature-label-user-expert-theyve-certain-number-upvotes-based</guid>
<pubDate>Wed, 23 May 2012 21:15:07 +0000</pubDate>
</item>
<item>
<title>Remove a tag</title>
<link>http://www.question2answer.org/qa/13379/remove-a-tag</link>
<description>I have two tags .. Asset and Assets and I would like to remove the second, can't see how to do that.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/13379/remove-a-tag</guid>
<pubDate>Fri, 09 Mar 2012 11:00:19 +0000</pubDate>
</item>
<item>
<title>Tags should be &lt;link rel=&quot;tag&quot;&gt;</title>
<link>http://www.question2answer.org/qa/12403/tags-should-be-link-rel-tag</link>
<description>

&lt;p&gt;
	Tags in the questions should follow the official standard for Web 2.0 tags. This means that all tags should have &lt;strong&gt;rel=&quot;tag&quot;&lt;/strong&gt; attribute. See the official specification&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://microformats.org/wiki/rel-tag&quot;&gt;http://microformats.org/wiki/rel-tag&lt;/a&gt;. You could also look the way WordPress implements tags, e.g. &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.nakov.com/blog/2008/03/15/rejected-a-program-manager-position-at-microsoft-dublin-my-successful-interview-at-microsoft/#tags&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;
	Svetlin Nakov&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/12403/tags-should-be-link-rel-tag</guid>
<pubDate>Wed, 01 Feb 2012 14:57:35 +0000</pubDate>
</item>
<item>
<title>advise :  tag can add info</title>
<link>http://www.question2answer.org/qa/12398/advise-tag-can-add-info</link>
<description>i has some advise &amp;nbsp;and if question2answer has the plan&lt;br /&gt;
&lt;br /&gt;
1, &amp;nbsp;tag can add info , just like &lt;A HREF=&quot;http://stackoverflow.com/tags/android/info&quot; rel=&quot;nofollow&quot;&gt;http://stackoverflow.com/tags/android/info&lt;/A&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/12398/advise-tag-can-add-info</guid>
<pubDate>Wed, 01 Feb 2012 08:30:57 +0000</pubDate>
</item>
<item>
<title>Tag Cloud only showing 5 words</title>
<link>http://www.question2answer.org/qa/11392/tag-cloud-only-showing-5-words</link>
<description>Where is the setting that allows more than 5 words in the tag cloud? I swear it was there earlier, but now I cant find it..</description>
<category>Plugins</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/11392/tag-cloud-only-showing-5-words</guid>
<pubDate>Fri, 23 Dec 2011 16:46:12 +0000</pubDate>
</item>
<item>
<title>How to forbid addition of a Tag</title>
<link>http://www.question2answer.org/qa/11175/how-to-forbid-addition-of-a-tag</link>
<description>I want a questioner to choose only the Tag prepared in advance (like a category).&lt;br /&gt;
&lt;br /&gt;
If there is a method of enabling it to choose only existing Tag in question form, please let me know.&lt;br /&gt;
&lt;br /&gt;
Thank you for your consideration.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/11175/how-to-forbid-addition-of-a-tag</guid>
<pubDate>Thu, 15 Dec 2011 10:40:16 +0000</pubDate>
</item>
<item>
<title>How can I add a tag to an answer and question via plugin?</title>
<link>http://www.question2answer.org/qa/10735/how-can-i-add-a-tag-to-an-answer-and-question-via-plugin</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
I just want to add programatically tags to a given answer and question within a plugin.&lt;br /&gt;
&lt;br /&gt;
I must do this in the&amp;quot; function verifyItem($a_item) &amp;quot; of the &amp;quot;qa_html_theme_layer&amp;quot; class, which is extended by qa_html_theme_base.&lt;br /&gt;
&lt;br /&gt;
Is there something like $a_item-&amp;gt;AddTag()?&lt;br /&gt;
&lt;br /&gt;
Thanks for your help</description>
<category>Plugins</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/10735/how-can-i-add-a-tag-to-an-answer-and-question-via-plugin</guid>
<pubDate>Thu, 24 Nov 2011 09:36:27 +0000</pubDate>
</item>
<item>
<title>How to style Sidebar Tag like this one?</title>
<link>http://www.question2answer.org/qa/9156/how-to-style-sidebar-tag-like-this-one</link>
<description>&lt;A HREF=&quot;http://prntscr.com/2yvm8&quot; rel=&quot;nofollow&quot;&gt;http://prntscr.com/2yvm8&lt;/A&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
i know how to style it but i dont know which one to change. thank you.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/9156/how-to-style-sidebar-tag-like-this-one</guid>
<pubDate>Fri, 09 Sep 2011 06:05:47 +0000</pubDate>
</item>
<item>
<title>Is there a way to convert the tag system category system?</title>
<link>http://www.question2answer.org/qa/9092/is-there-a-way-to-convert-the-tag-system-category-system</link>
<description>

&lt;p&gt;
	&lt;span class=&quot;hps&quot;&gt;Is there a way&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot;&gt;to convert&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot;&gt;the tag&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;system&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot;&gt;category&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot;&gt;system&lt;/span&gt;&lt;span&gt;?&lt;/span&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/9092/is-there-a-way-to-convert-the-tag-system-category-system</guid>
<pubDate>Mon, 05 Sep 2011 12:39:56 +0000</pubDate>
</item>
<item>
<title>Conditional tag, check on frontpage?</title>
<link>http://www.question2answer.org/qa/8533/conditional-tag-check-on-frontpage</link>
<description>What conditional tag is being used to wether you are on the frontpage or not?&lt;br /&gt;
&lt;br /&gt;
I am trying to implement some things that only should be visible on the frontpage...</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/8533/conditional-tag-check-on-frontpage</guid>
<pubDate>Sat, 20 Aug 2011 21:11:37 +0000</pubDate>
</item>
<item>
<title>Wildcard for tag search</title>
<link>http://www.question2answer.org/qa/8394/wildcard-for-tag-search</link>
<description>

&lt;p&gt;
	I would like to have a wildcard-search for tags.&lt;/p&gt;


&lt;p&gt;
	e.g. something like &lt;strong&gt;&quot;index.php?qa=tag&amp;amp;qa_1=feature%&quot;&lt;/strong&gt;
&lt;br&gt;
	should find all questions with the tags beginning with feature - like feature-request, feature-suggestion, feature etc...&lt;/p&gt;


&lt;p&gt;
	for testing I've modified the function &lt;strong&gt;qa_db_tag_recent_qs_selectspec&lt;/strong&gt; in&amp;nbsp; &lt;strong&gt;qa-db-selects.php &lt;/strong&gt;in a way that I replaced&lt;strong&gt; &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;/strong&gt; with a &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;strong&gt;like&lt;/strong&gt;&lt;/span&gt;&amp;nbsp; but without success...&lt;/p&gt;


&lt;p&gt;
	$selectspec['source'].=&quot; JOIN (SELECT postid FROM ^posttags WHERE wordid = (SELECT wordid FROM ^words WHERE word &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;like &lt;/span&gt;$ AND word &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;like &lt;/span&gt;$ COLLATE utf8_bin LIMIT 1) ORDER BY postcreated DESC LIMIT #,#) y ON ^posts.postid=y.postid&quot;;&lt;/p&gt;


&lt;p&gt;
	feature%&amp;nbsp; returns nothing at all
&lt;br&gt;
	feature-%&amp;nbsp; returns just one questions with tag feature-request
&lt;br&gt;
	feature-s% returns just one questions with tag feature-suggestion&lt;/p&gt;


&lt;p&gt;
	does anybody has any hint for this?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">http://www.question2answer.org/qa/8394/wildcard-for-tag-search</guid>
<pubDate>Thu, 18 Aug 2011 00:14:24 +0000</pubDate>
</item>
</channel>
</rss>