<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged list</title>
<link>https://www.question2answer.org/qa/tag/list</link>
<description>Powered by Question2Answer</description>
<item>
<title>Show all votes</title>
<link>https://www.question2answer.org/qa/113744/show-all-votes</link>
<description>I would like to create a link in the navigation to list all pools (votes). Is this possible without much effort?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/113744/show-all-votes</guid>
<pubDate>Fri, 31 May 2024 09:28:46 +0000</pubDate>
</item>
<item>
<title>How to list custom pages like question lists</title>
<link>https://www.question2answer.org/qa/89414/how-to-list-custom-pages-like-question-lists</link>
<description>I have an idea to use Q2A feature to create custom pages to write articles because it's simple, SEO-friendly and really customizable. I don't use blog plugin because these articles are not blogs and they have different structured data markups. Just imagine they are recipe, book or review pages.&lt;br /&gt;
&lt;br /&gt;
There will be about hundreds or even thousands of these articles if I manage to write, so I need some ways to list them like the way we list questions.&lt;br /&gt;
&lt;br /&gt;
The listing style is simple without voting feature, but how do I list them with pagination. Of course, I won't ask for a full code here, but any general idea to do so?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/89414/how-to-list-custom-pages-like-question-lists</guid>
<pubDate>Sat, 28 Nov 2020 13:17:12 +0000</pubDate>
</item>
<item>
<title>How to hide user list page for normal users and redirect them to home page or another?</title>
<link>https://www.question2answer.org/qa/88724/hide-user-list-page-normal-users-redirect-them-home-another</link>
<description>

&lt;p&gt;I am &lt;strong&gt;&lt;span style=&quot;color:#f1c40f&quot;&gt;not a developer&lt;/span&gt;&lt;/strong&gt; but a good student. I want to show &lt;strong&gt;users list page&lt;/strong&gt;&amp;nbsp;only for&amp;nbsp;expert or above level admins, i have searched this official&amp;nbsp;website and google but i cant find the solution.&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;But&amp;nbsp;some time ago i did it,&amp;nbsp; &amp;nbsp;not remember the code how i did it, something code in top of&amp;nbsp;&quot;&lt;span style=&quot;color:#2980b9&quot;&gt;&lt;strong&gt;users.php&lt;/strong&gt;&lt;/span&gt;&quot; file like .....&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;broken codes&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;&quot;user_check if not ,&amp;nbsp;expert level users or above&lt;/p&gt;

&lt;p&gt;return user - /&lt;/p&gt;&lt;/blockquote&gt;

&lt;hr&gt;

&lt;p&gt;&lt;span style=&quot;color:#e67e22&quot;&gt;&lt;span style=&quot;font-size:18px&quot;&gt;&lt;strong&gt;Please provide me a solution? how i did it now?&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/88724/hide-user-list-page-normal-users-redirect-them-home-another</guid>
<pubDate>Wed, 28 Oct 2020 13:55:21 +0000</pubDate>
</item>
<item>
<title>How to show comment counts in activity list like answer counts?</title>
<link>https://www.question2answer.org/qa/66143/how-to-show-comment-counts-activity-list-like-answer-counts</link>
<description>I know there is an old plugin to show comment counts inside that answer count square box. But it is not working well on mobiles. I am using the snow flat theme. Any way to clone that answer count box and make it comment counts?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/66143/how-to-show-comment-counts-activity-list-like-answer-counts</guid>
<pubDate>Sat, 11 Aug 2018 11:32:25 +0000</pubDate>
</item>
<item>
<title>Needed in Core: Integrate user/comments for 1.8</title>
<link>https://www.question2answer.org/qa/61342/needed-in-core-integrate-user-comments-for-1-8</link>
<description>With 1.8.0-beta and before we can see the user's questions and answers, example:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.question2answer.org/qa/user/q2apro/questions&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/q2apro/questions&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.question2answer.org/qa/user/q2apro/answers&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/q2apro/answers&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
However, there is still not the list of comments - which would be *very helpful*:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.question2answer.org/qa/user/q2apro/comments&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/q2apro/comments&lt;/a&gt; (not found)&lt;br /&gt;
&lt;br /&gt;
Core change needed:&lt;br /&gt;
&lt;br /&gt;
1. pages/user.php - adding:&lt;br /&gt;
&lt;br /&gt;
case 'comments':&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;qa_set_template('user-comments');&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;$qa_content = include QA_INCLUDE_DIR . 'pages/user-comments.php';&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;break;&lt;br /&gt;
&lt;br /&gt;
2. New file: /pages/user-comments.php with qa_db_user_recent_c_qs_selectspec() calling.&lt;br /&gt;
&lt;br /&gt;
@Scott @pupi1985 - Can you do the implementation? I am certain you are way faster than me doing this.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
PS:&lt;br /&gt;
- my request from 2015: &lt;a href=&quot;http://www.question2answer.org/qa/46055/user-questions-and-user-answers-exist-user-comments-missing&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/46055/user-questions-and-user-answers-exist-user-comments-missing&lt;/a&gt;&lt;br /&gt;
- my request from 2012: &lt;a href=&quot;http://www.question2answer.org/qa/18716/how-to-list-all-comments-of-a-certain-user&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/18716/how-to-list-all-comments-of-a-certain-user&lt;/a&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/61342/needed-in-core-integrate-user-comments-for-1-8</guid>
<pubDate>Sat, 16 Dec 2017 05:02:19 +0000</pubDate>
</item>
<item>
<title>How to get image with list of questions on home page using function of Tabs Widget?</title>
<link>https://www.question2answer.org/qa/49367/image-with-list-questions-home-page-using-function-tabs-widget</link>
<description>

&lt;h2&gt;Hello Everyone I need a little &lt;strong&gt;help&lt;/strong&gt;.&lt;/h2&gt;

&lt;h2&gt;I’m using this plugin &lt;strong&gt;Q2A-Tab-Widget&lt;/strong&gt;&lt;/h2&gt;

&lt;h2&gt;
&lt;br&gt;&lt;strong&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/Towhidn/Q2A-Tab-Widget&quot;&gt;https://github.com/Towhidn/Q2A-Tab-Widget&lt;/a&gt;&lt;/strong&gt;&lt;/h2&gt;

&lt;h2&gt;&amp;nbsp;&lt;/h2&gt;

&lt;h2&gt;and this plugin shows this result in side panel.&lt;/h2&gt;

&lt;h2&gt;&lt;strong&gt;Result:&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=1883998995224805658&quot; style=&quot;height:446px; width:287px&quot;&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;but i want an&amp;nbsp;image with list of questions on home page using function of Tabs Widget.&lt;/h2&gt;

&lt;h2&gt;like this image , please help me out.&lt;/h2&gt;

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

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

&lt;h2&gt;this is tabs-widget function for image retrieval with list of question, how to implement this in q2a home page ?&lt;/h2&gt;

&lt;p&gt;code on google docs&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://docs.google.com/document/d/1aQXjOS5u7lj85s7lfV-eXCT8slJp8GxRZ9INYfyhQdo/edit?pli=1&quot; rel=&quot;nofollow&quot;&gt;https://docs.google.com/document/d/1aQXjOS5u7lj85s7lfV-eXCT8slJp8GxRZ9INYfyhQdo/edit?pli=1&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;&amp;nbsp;&lt;/h2&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/49367/image-with-list-questions-home-page-using-function-tabs-widget</guid>
<pubDate>Sat, 12 Dec 2015 08:57:20 +0000</pubDate>
</item>
<item>
<title>user/questions and user/answers exist - but user/comments are missing</title>
<link>https://www.question2answer.org/qa/46055/user-questions-and-user-answers-exist-user-comments-missing</link>
<description>I want to advise to create a page for all user comments (see also Scott's user activity plugin).&lt;br /&gt;
&lt;br /&gt;
For now, when in a user profile, we can list all questions and all answers. &amp;quot;All comments&amp;quot; are missing.&lt;br /&gt;
&lt;br /&gt;
I would also suggest to show the comments only to the user himself.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
exists: &lt;a href=&quot;http://www.question2answer.org/qa/user/q2apro.com/questions&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/q2apro.com/questions&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
exists: &lt;a href=&quot;http://www.question2answer.org/qa/user/q2apro.com/answers&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/q2apro.com/answers&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
hope soon: &lt;a href=&quot;http://www.question2answer.org/qa/user/q2apro.com/comments&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/q2apro.com/comments&lt;/a&gt; (private)</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/46055/user-questions-and-user-answers-exist-user-comments-missing</guid>
<pubDate>Tue, 23 Jun 2015 16:22:20 +0000</pubDate>
</item>
<item>
<title>Problem between Question Summary and Thumbs</title>
<link>https://www.question2answer.org/qa/44319/problem-between-question-summary-and-thumbs</link>
<description>

&lt;p&gt;Hi every body&lt;/p&gt;

&lt;p&gt;i am using this solution for question summary :&amp;nbsp;&amp;nbsp; &lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/21021/show-question-summary-in-list-page?show=21021#q21021&quot;&gt;&lt;strong&gt;Link&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;and i am using this solution for Thumbs : &lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/44023/show-question-first-image-for-thumb-in-questions-list?show=44023#q44023&quot;&gt;&lt;strong&gt;Link&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;above codes working individually ok&lt;/p&gt;

&lt;p&gt;but when i using both of them in my theme ,&amp;nbsp;&lt;/p&gt;

&lt;p&gt;the questions have not any thumb showing&amp;nbsp; summary but if any questions have thumb will not showing summary!&lt;/p&gt;

&lt;p&gt;but i want to display both of them in my question list !&lt;/p&gt;

&lt;p&gt;how can i solve this problem ??!!&lt;/p&gt;

&lt;p&gt;thank you for helping me ;)&lt;/p&gt;</description>
<category>Themes</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/44319/problem-between-question-summary-and-thumbs</guid>
<pubDate>Mon, 16 Mar 2015 04:52:10 +0000</pubDate>
</item>
<item>
<title>How To List Plugins In Alphabetical Order?</title>
<link>https://www.question2answer.org/qa/41469/how-to-list-plugins-in-alphabetical-order</link>
<description>

&lt;p&gt;
	&lt;span style=&quot;font-size:28px;&quot;&gt;&lt;span style=&quot;font-family:tahoma,geneva,sans-serif;&quot;&gt;Is there any option to change this &lt;span style=&quot;color:#ff0000;&quot;&gt;plugins&lt;/span&gt; list in&amp;nbsp;&lt;span style=&quot;color:#ff0000;&quot;&gt;Alphabetical&lt;/span&gt; Order.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;


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


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/41469/how-to-list-plugins-in-alphabetical-order</guid>
<pubDate>Fri, 21 Nov 2014 05:33:05 +0000</pubDate>
</item>
<item>
<title>Big PROBLEM: I deleted in database questions summary (tags+questions list)</title>
<link>https://www.question2answer.org/qa/37573/problem-deleted-database-questions-summary-tags-questions</link>
<description>

&lt;p&gt;
	Big PROBLEM: I deleted in my &lt;a rel=&quot;nofollow&quot; href=&quot;http://numero-15.com&quot;&gt;q2A&lt;/a&gt; database questions summary (tags+questions list)
&lt;br&gt;
	
&lt;br&gt;
	I use a short summary in questions lists, and tags list, but I think the number of words went to maybe 30 to 0. How can I fixe this?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/37573/problem-deleted-database-questions-summary-tags-questions</guid>
<pubDate>Wed, 27 Aug 2014 09:20:40 +0000</pubDate>
</item>
<item>
<title>How to order USERS+TAGS from left to right (like stackoverflow)</title>
<link>https://www.question2answer.org/qa/37424/how-to-order-users-tags-from-left-to-right-like-stackoverflow</link>
<description>

&lt;p&gt;
	&lt;strong&gt;How to change &lt;span style=&quot;color:#006400;&quot;&gt;USERS&lt;/span&gt;+&lt;span style=&quot;color:#008000;&quot;&gt;TAGS&lt;/span&gt; order lists &lt;span style=&quot;color:#ff0000;&quot;&gt;from left to right &lt;/span&gt;(like stackoverflow), &lt;/strong&gt;now by defaut is from top to down in my &lt;a rel=&quot;nofollow&quot; href=&quot;http://odlg.org/Plantes-Medicinales&quot;&gt;site&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;
	=&amp;gt; &lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=8405694202604192969&quot; style=&quot;width: 600px; height: 250px;&quot;&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/37424/how-to-order-users-tags-from-left-to-right-like-stackoverflow</guid>
<pubDate>Sat, 23 Aug 2014 11:19:41 +0000</pubDate>
</item>
<item>
<title>BUG: Mouse hover on Tag will cause the background color exceed the tag box.</title>
<link>https://www.question2answer.org/qa/34870/bug-mouse-hover-tag-will-cause-the-background-color-exceed-the</link>
<description>

&lt;p&gt;
	I found some bugs in layout of question page for tags as 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=2828101633991525101&quot; style=&quot;width: 433px; height: 84px;&quot;&gt;&lt;/p&gt;


&lt;p&gt;
	If I move the mouse to the tag on a question page the background color blue will exceed the tag box like this.&lt;/p&gt;


&lt;p&gt;
	Then I checked the inspect element:&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=11561256804563770799&quot; style=&quot;width: 424px; height: 94px;&quot;&gt;&lt;/p&gt;


&lt;p&gt;
	As we can compared to the one that Q2A has is this :&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=6322145852296059549&quot; style=&quot;width: 281px; height: 77px;&quot;&gt;&lt;/p&gt;


&lt;p&gt;
	The &quot;&amp;lt;Li /&amp;gt;&quot; will exceed the tag box and I don't know why I never changed any CSS layout of its class.&lt;/p&gt;


&lt;p&gt;
	Furthermore this issure does not exist in the question list page as you can see here:&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=11324629331405748157&quot; style=&quot;width: 507px; height: 84px;&quot;&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=15490100727506300821&quot; style=&quot;width: 517px; height: 92px;&quot;&gt;&lt;/p&gt;


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


&lt;p&gt;
	Does anybody can help?&lt;/p&gt;</description>
<category>Themes</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/34870/bug-mouse-hover-tag-will-cause-the-background-color-exceed-the</guid>
<pubDate>Tue, 03 Jun 2014 13:24:51 +0000</pubDate>
</item>
<item>
<title>'Load more questions' link at the bottom of the front page</title>
<link>https://www.question2answer.org/qa/34509/load-more-questions-link-at-the-bottom-of-the-front-page</link>
<description>

&lt;p&gt;
	Currently my front page ends with the standard&amp;nbsp;&lt;em&gt;&quot;To see more, click for the full list of questions.&quot;&lt;/em&gt;&lt;/p&gt;


&lt;p&gt;
	What I would like to have instead is a&amp;nbsp;&lt;em&gt;&quot;Click to load more questions&quot;&lt;/em&gt;&amp;nbsp;link. When clicked, more questions would be added to the main list by loading them dynamically.&lt;/p&gt;


&lt;p&gt;
	Is there a plugin/theme for this?&lt;/p&gt;</description>
<category>Themes</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/34509/load-more-questions-link-at-the-bottom-of-the-front-page</guid>
<pubDate>Mon, 19 May 2014 17:54:06 +0000</pubDate>
</item>
<item>
<title>List uploads plugin - server time out. Any ideas for improvement?</title>
<link>https://www.question2answer.org/qa/31379/list-uploads-plugin-server-time-out-any-ideas-for-improvement</link>
<description>

&lt;p&gt;
	Hi guys, having a blob table of close to 400 MB makes my &lt;a href=&quot;http://www.question2answer.org/qa/18768/new-plugin-list-all-uploads-v0-5-update-q2a-image-manager&quot; rel=&quot;nofollow&quot;&gt;list all uploads plugin&lt;/a&gt; (image manager) very slow when using &lt;strong&gt;&quot;Show only unused images&quot;&lt;/strong&gt;, and thus causing a 504 gateway time-out of the server:&lt;/p&gt;


&lt;p style=&quot;margin-left: 40px;&quot;&gt;
	&quot;Gateway Time-out
&lt;br&gt;
	The gateway did not receive a timely response from the upstream server or application.
&lt;br&gt;
	Apache/2.2.22 Server at www.gute-mathe-fragen.de Port 80&quot;&lt;/p&gt;


&lt;p&gt;
	Even though that I specify to check only the images of the last 3 days. So I think that it is also due to the amount of posts (currently about 89 000) that are checked &lt;strong&gt;for containing the blob ID&lt;/strong&gt;.&lt;/p&gt;


&lt;p&gt;
	Has anyone an idea how I can improve the code so that there is &lt;strong&gt;no timeout? &lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;
	Thanks a lot!
&lt;br&gt;
	Kai&lt;/p&gt;


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


&lt;p&gt;
	The php code of the listing page: &lt;a href=&quot;https://github.com/echteinfachtv/q2a-list-uploads-page/blob/master/qa-list-uploads-page.php&quot; rel=&quot;nofollow&quot;&gt;https://github.com/echteinfachtv/q2a-list-uploads-page/blob/master/qa-list-uploads-page.php&lt;/a&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/31379/list-uploads-plugin-server-time-out-any-ideas-for-improvement</guid>
<pubDate>Mon, 03 Feb 2014 04:24:42 +0000</pubDate>
</item>
<item>
<title>What are the lists of New Features you'd want to see in upcoming Q2A release?</title>
<link>https://www.question2answer.org/qa/30928/what-are-the-lists-new-features-youd-want-see-upcoming-release</link>
<description>

&lt;p&gt;
	What are the lists of &lt;span style=&quot;color:#ff0000;&quot;&gt;&lt;strong&gt;New Features&lt;/strong&gt;&lt;/span&gt; you'd want to see in upcoming &lt;span style=&quot;color:#0000ff;&quot;&gt;&lt;strong&gt;Q2A release&lt;/strong&gt;&lt;/span&gt;?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/30928/what-are-the-lists-new-features-youd-want-see-upcoming-release</guid>
<pubDate>Thu, 23 Jan 2014 16:39:55 +0000</pubDate>
</item>
<item>
<title>How to add &quot;Recent Activity&quot; just under the User profil main page ?</title>
<link>https://www.question2answer.org/qa/30328/how-add-recent-activity-just-under-the-user-profil-main-page</link>
<description>

&lt;p&gt;
	Hi everybody and thanks for the great help you provide here,&lt;/p&gt;


&lt;p&gt;
	I have been searching a way to put all Submenu user information &lt;strong&gt;only in one page !&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;strong&gt;How to add &lt;span style=&quot;text-decoration: underline;&quot;&gt;&quot;Recent Activity&quot; (post list), &lt;/span&gt;just under the user profil main page ?&lt;/strong&gt;&lt;/p&gt;


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


&lt;p&gt;
	PS : I am just looking for a code to put somewhere under. Someone ask a similar question with no answer =&amp;gt; &lt;a href=&quot;http://www.question2answer.org/qa/15353/how-to-get-full-question-list-in-qa-page-user-php&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/15353/how-to-get-full-question-list-in-qa-page-user-php&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/30328/how-add-recent-activity-just-under-the-user-profil-main-page</guid>
<pubDate>Sat, 04 Jan 2014 10:32:27 +0000</pubDate>
</item>
<item>
<title>List all categores in advanced theme</title>
<link>https://www.question2answer.org/qa/29165/list-all-categores-in-advanced-theme</link>
<description>

&lt;p&gt;
	As I cannot find a widget for the &lt;strong&gt;categories&lt;/strong&gt; to reposition the categories on top, I have to use an advanced theme.&lt;/p&gt;


&lt;p&gt;
	I failed to understand the qa functions for categories, maybe I am too stupid?&lt;/p&gt;


&lt;p&gt;
	So that's why I built my own simple query. Maybe it will help you for your own projects:&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;font-size:11px;&quot;&gt;&lt;span style=&quot;font-family: courier new,courier,monospace;&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 205);&quot;&gt;/* LIST categories with counts */
&lt;br&gt;
	if($this-&amp;gt;template=='qa') {
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;$this-&amp;gt;output('&amp;lt;ul id=&quot;categories_top&quot;&amp;gt;');
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;$queryCats = qa_db_query_sub('SELECT title,qcount,backpath FROM `^categories` GROUP BY title;');
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;while( ($row = qa_db_read_one_assoc($queryCats,true)) !== null ) {
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$this-&amp;gt;output('&amp;lt;li&amp;gt;&amp;lt;a href=&quot;'.$row['backpath'].'&quot;&amp;gt;'.$row['title'].' &amp;lt;span class=&quot;count&quot;&amp;gt;('.$row['qcount'].')&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;');
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;$this-&amp;gt;output('&amp;lt;/ul&amp;gt;');
&lt;br&gt;
	}&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/29165/list-all-categores-in-advanced-theme</guid>
<pubDate>Thu, 21 Nov 2013 07:29:40 +0000</pubDate>
</item>
<item>
<title>Bug: Answer lists of users: Titles do not have the anchor link to the answer</title>
<link>https://www.question2answer.org/qa/28970/bug-answer-lists-users-titles-not-have-the-anchor-link-answer</link>
<description>See my answer list for example: &lt;a href=&quot;http://www.question2answer.org/qa/user/Kai_echteinfachtv/answers&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/Kai_echteinfachtv/answers&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
If you click on the question title it should bring you to the answer - but instead it brings you only to the question where you have to search for your answer - this can take a while if your answer is n°20 or alike.&lt;br /&gt;
&lt;br /&gt;
@gidgreen: Please add the anchor tag to the question title.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/28970/bug-answer-lists-users-titles-not-have-the-anchor-link-answer</guid>
<pubDate>Sun, 10 Nov 2013 15:46:47 +0000</pubDate>
</item>
<item>
<title>Category and Subcategory in Questionlists</title>
<link>https://www.question2answer.org/qa/28487/category-and-subcategory-in-questionlists</link>
<description>

&lt;p&gt;
	Is it possible to show category and subcategory in question lists like:
&lt;br&gt;
	
&lt;br&gt;
	&amp;nbsp;
&lt;br&gt;
	postet 10 minutes ago in &lt;span style=&quot;background-color:#ffff00;&quot;&gt;qhysics/quantumphysics&lt;/span&gt; by user&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/28487/category-and-subcategory-in-questionlists</guid>
<pubDate>Tue, 22 Oct 2013 17:36:55 +0000</pubDate>
</item>
<item>
<title>Handy SQL command to list all notify emails!</title>
<link>https://www.question2answer.org/qa/27626/handy-sql-command-to-list-all-notify-emails</link>
<description>

&lt;p&gt;
	Ever wondered, how many people put their email address in the notification field?&lt;/p&gt;


&lt;p&gt;
	// to get all emails listed
&lt;br&gt;
	&lt;strong&gt;SELECT notify FROM `qa_posts` WHERE userid IS NULL and notify IS NOT NULL and notify &amp;lt;&amp;gt; '@'&lt;/strong&gt;
&lt;br&gt;
	
&lt;br&gt;
	// to list all emails and show their count (number of occurence)
&lt;br&gt;
	&lt;strong&gt;SELECT notify, COUNT(notify) AS cnt
&lt;br&gt;
	FROM `qa_posts`
&lt;br&gt;
	WHERE userid IS NULL
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;AND notify IS NOT NULL
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;AND notify &amp;lt;&amp;gt; '@'
&lt;br&gt;
	GROUP BY notify&lt;/strong&gt;
&lt;br&gt;
	
&lt;br&gt;
	Hope that helps!&lt;/p&gt;


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


&lt;p&gt;
	To list only the notifications on questions (put in the notify-field on the ask page):&lt;/p&gt;


&lt;p&gt;
	SELECT notify, COUNT(notify) AS cnt
&lt;br&gt;
	FROM `qa_posts`
&lt;br&gt;
	WHERE userid IS NULL
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;AND notify IS NOT NULL
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;AND notify &amp;lt;&amp;gt; '@'
&lt;br&gt;
	&lt;span style=&quot;color:#0000ff;&quot;&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;AND type = 'Q'&lt;/span&gt;
&lt;br&gt;
	GROUP BY notify
&lt;br&gt;
	&amp;nbsp;&lt;/p&gt;


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


&lt;p&gt;
	Using the first command you get xxx rows displayed, take this number and divide it by number of questions (see admin stats or use &lt;em&gt;SELECT * FROM `qa_posts` WHERE type='Q'&lt;/em&gt;)&lt;/p&gt;


&lt;p&gt;
	For me: 1896 notification emails on 10637 questions = &lt;strong&gt;17,8 %&lt;/strong&gt; of anonymous people leaving their email address.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/27626/handy-sql-command-to-list-all-notify-emails</guid>
<pubDate>Fri, 20 Sep 2013 08:19:12 +0000</pubDate>
</item>
</channel>
</rss>