<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged guest</title>
<link>https://www.question2answer.org/qa/tag/guest</link>
<description>Powered by Question2Answer</description>
<item>
<title>Show default avatar for guests?</title>
<link>https://www.question2answer.org/qa/65749/show-default-avatar-for-guests</link>
<description>Maybe it's too late, but is an avatar displayed for guests?&lt;br /&gt;
&lt;br /&gt;
Cannot find the enable option.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/65749/show-default-avatar-for-guests</guid>
<pubDate>Mon, 30 Jul 2018 20:51:04 +0000</pubDate>
</item>
<item>
<title>Needed: Require confirmation of email for post notification for guests</title>
<link>https://www.question2answer.org/qa/64384/needed-require-confirmation-email-post-notification-guests</link>
<description>I have q2a setup that guests can ask questions without registration.&lt;br /&gt;
&lt;br /&gt;
The main problem: When they add their email address in the last field for notification, many of them state wrong emails. This results in many incoming emails &amp;quot;Mail Delivery Failed&amp;quot; in my email account.&lt;br /&gt;
&lt;br /&gt;
Another problem: What if someone adds an email address of a complete different person.&lt;br /&gt;
&lt;br /&gt;
Solution approach 1: Only allow registered users (with email confirmed) to ask. But this would limit the number of incoming questions.&lt;br /&gt;
&lt;br /&gt;
Solution approach 2: Send an email to the email given and ask for confirmation. ← This approach seems good enough.&lt;br /&gt;
&lt;br /&gt;
I would also suggest to store this email as valid email later on so it does not need to be validated again.&lt;br /&gt;
&lt;br /&gt;
Any opinions?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/64384/needed-require-confirmation-email-post-notification-guests</guid>
<pubDate>Fri, 08 Jun 2018 20:24:05 +0000</pubDate>
</item>
<item>
<title>How to prevent guests from browsing the list of questions</title>
<link>https://www.question2answer.org/qa/63708/how-to-prevent-guests-from-browsing-the-list-of-questions</link>
<description>We set up our Q2A instance and it is intended to be used by authenticated users only, logging in with their LDAP credentials. Registration is disabled and Q2A users are automatically created on first login.&lt;br /&gt;
&lt;br /&gt;
What we now need is a way to deny public access to the list of questions. I know there's a configuration setting ''View question pages: Registered users&amp;quot;, but this does not prevent guests from browsing the list of questions.&lt;br /&gt;
&lt;br /&gt;
We want to also prevent search engines from indexing the list of questions. There's an option &amp;quot;Allow search engines to view question pages&amp;quot;, but I can speculate that this refers to the actual question and not to the list of questions, by association with the similar option referring to users.&lt;br /&gt;
&lt;br /&gt;
What would be the corret approach for these two issues?&lt;br /&gt;
&lt;br /&gt;
Thanks!</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/63708/how-to-prevent-guests-from-browsing-the-list-of-questions</guid>
<pubDate>Fri, 27 Apr 2018 14:06:08 +0000</pubDate>
</item>
<item>
<title>Allow non-registered users to ask questions, answer and comment</title>
<link>https://www.question2answer.org/qa/56013/allow-non-registered-users-ask-questions-answer-and-comment</link>
<description>Is there a way to enable non registered users to post questions, comments and answers without registering? &amp;nbsp;I would like to have this option, but with reCaptcha required. &amp;nbsp;I think this would help getting more questions and answers from people that dont want to take the time to register.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/56013/allow-non-registered-users-ask-questions-answer-and-comment</guid>
<pubDate>Fri, 27 Jan 2017 11:55:59 +0000</pubDate>
</item>
<item>
<title>Allow voting to quest</title>
<link>https://www.question2answer.org/qa/52356/allow-voting-to-quest</link>
<description>Is there any way to allow the quest also voting for questions ? I searching for the solution but many user asking but there was no answer. In the administrator panel i see the permission settings but there i can only allow voting for question for registered users</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/52356/allow-voting-to-quest</guid>
<pubDate>Mon, 27 Jun 2016 09:08:26 +0000</pubDate>
</item>
<item>
<title>Tip: prevent anonymous users without IP to answer or comment</title>
<link>https://www.question2answer.org/qa/51178/tip-prevent-anonymous-users-without-ip-to-answer-or-comment</link>
<description>

&lt;p&gt;Just a tip for you, in case you have a troll like I have in my forum that visits you without IP address - and you in general allow guests to answer/comment. In other words: He can always interact with your forum --- but not anymore with this:&lt;/p&gt;

&lt;p&gt;You can remove the answer-comment-buttons by this code in your advanced theme (qa-theme.php):&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // prevent anonymous users without IP to answer or comment, allow on ask page
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;public function form_buttons($form, $columns)
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$isaskpage = ($this-&amp;gt;template == 'ask');
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$userid = qa_get_logged_in_userid();
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$userip = qa_remote_ip_address();
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if($isaskpage || !empty($userip) || !empty($userid))
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;// call default method output
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;qa_html_theme_base::form_buttons($form, $columns);
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/p&gt;

&lt;p&gt;
&lt;br&gt;This feature is also part of the premium &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.q2apro.com/plugins/stop-spam&quot;&gt;stop spam plugin&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Regards,
&lt;br&gt;Kai&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/51178/tip-prevent-anonymous-users-without-ip-to-answer-or-comment</guid>
<pubDate>Tue, 05 Apr 2016 15:04:59 +0000</pubDate>
</item>
<item>
<title>Site loads with unwanted characters for guest users when “W3 Total Cache” is defined in wp-config.php</title>
<link>https://www.question2answer.org/qa/36360/loads-unwanted-characters-guest-users-total-defined-config</link>
<description>

&lt;p&gt;
	When a user is logged in, site loads without any problem but if a guest user visit the site, it shows some characters same as this:&lt;/p&gt;


&lt;p style=&quot;margin-top: 0px; color: rgb(51, 51, 51); font-family: nassim-regular, Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&lt;span style=&quot;font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: tahoma, geneva, sans-serif;&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;O-y²ee·¹”s&amp;lt;$+¼š[ÌÙtõBÉf2ŒÉ&amp;amp; ÙW!Ìèe Ôð9â§ÃGežÀœäì {ËuíÎˆFòf©D ¢k’t}8ƒEm¿TePYâsáÂq¯‚—cˆ#Ñ›&amp;gt;Ælæ#u«lB,G«gÆ¯æÚå¿—TYûKä!E&quot;¢ØÀÕìS&amp;lt;ðEùànú0&quot;¸µq8ÜW1K™1ìµPóåÄ8D²ŠmmâP¦lËJzñC¥R#Íñ&amp;amp;À…¦Z0D&quot;†˜y‘„¡«vb›‡l1yZ&amp;gt;ÑÊ¬nìÛÉ«âÅV7±³ W+Š&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;


&lt;p style=&quot;margin-top: 0px; color: rgb(51, 51, 51); font-family: nassim-regular, Helvetica, Arial, Sens-serif; font-size: 14px; line-height: 21px;&quot;&gt;
	&lt;span style=&quot;font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: tahoma, geneva, sans-serif;&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;and nothing else shows&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;


&lt;div&gt;
	Im using Q2A with wordpress integrated&lt;/div&gt;


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


&lt;div&gt;
	Edit:&lt;/div&gt;


&lt;div&gt;
	

&lt;div class=&quot;post-text&quot; style=&quot;margin: 0px 5px 5px 0px; padding: 0px; border: 0px; font-size: 14px; vertical-align: baseline; word-wrap: break-word; width: 660px; line-height: 17.804800033569336px; color: rgb(0, 0, 0); font-family: Arial, 'Liberation Sans', 'DejaVu Sans', sans-serif; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;&quot;&gt;
		

&lt;p style=&quot;margin: 0px 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; clear: both; background: transparent;&quot;&gt;
			I found that Q2A get in trouble when I define &quot;W3 Total Cache&quot; in wp-config.php&lt;/p&gt;
	&lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/36360/loads-unwanted-characters-guest-users-total-defined-config</guid>
<pubDate>Sat, 26 Jul 2014 03:09:01 +0000</pubDate>
</item>
<item>
<title>Show a message just to unregistered or anonymous users</title>
<link>https://www.question2answer.org/qa/34999/show-a-message-just-to-unregistered-or-anonymous-users</link>
<description>

&lt;p&gt;
	I have this site where I let anonymous questions to be posted, but I realized that some users don't really want to post as an anon but just don't know they are doing it.&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;font-size: 12px;&quot;&gt;Is there a way to show a message in the ask page ( mysite.com/ask ) that just for unregistered or anon users? so I can put a warning like &quot;You are asking a question as an anon, if you want, you can register here&quot;&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;font-size: 12px;&quot;&gt;Thanks&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;font-size: 12px;&quot;&gt;Edit:&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	Using the idea given by&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/user/q2apro.com&quot; style=&quot;font-size: 12px;&quot;&gt;q2apro.com&lt;/a&gt;&amp;nbsp;I find that I need to add this in the place where I want the message to appear (in my case below&amp;nbsp;&lt;strong&gt;&lt;em&gt;$this-&amp;gt;nav_main_sub();&lt;/em&gt;&lt;/strong&gt; inside qa-theme.php of the snow theme)&lt;/p&gt;


&lt;blockquote&gt;
	

&lt;div&gt;
		if (!qa_is_logged_in()) {&lt;/div&gt;
	

&lt;div&gt;
		$this-&amp;gt;output('MY MESSAGE');}&lt;/div&gt;
&lt;/blockquote&gt;


&lt;div&gt;
	But I don't know how to check if I'm in the ask page or don't.&lt;/div&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/34999/show-a-message-just-to-unregistered-or-anonymous-users</guid>
<pubDate>Mon, 09 Jun 2014 00:22:54 +0000</pubDate>
</item>
<item>
<title>Public voting logged by ip adress ?</title>
<link>https://www.question2answer.org/qa/34307/public-voting-logged-by-ip-adress</link>
<description>

&lt;p&gt;
	Is it possible or hard to do privilage to guests as well as users voting on questions ? Votes should be logged by ip . Can someone set on the road for doing that feature ?&lt;/p&gt;


&lt;p&gt;
	Voting spam from diferent IP's is not&amp;nbsp;issue.
&lt;br&gt;
	
&lt;br&gt;
	Thanks for any answers&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	EDIT: I see alot of people interested in this possibility: &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/24742/how-to-enable-anonymous-voting-on-questions&quot;&gt;1&lt;/a&gt;, &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/29863/how-to-allow-non-registered-users-post-vote-guest-anonymous&quot;&gt;2&lt;/a&gt;, &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/9891/enable-voting-for-anonymous&quot;&gt;3&lt;/a&gt;, &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/13550/how-do-allow-anonymous-user-voting-privileges&quot;&gt;4&lt;/a&gt;,&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/34307/public-voting-logged-by-ip-adress</guid>
<pubDate>Fri, 09 May 2014 21:19:51 +0000</pubDate>
</item>
<item>
<title>How to allow non-registered users to post &amp; vote as a guest or anonymous?</title>
<link>https://www.question2answer.org/qa/29863/how-to-allow-non-registered-users-post-vote-guest-anonymous</link>
<description>Is it possible to allow non-registered users to interact or login as &amp;quot;guest&amp;quot; or &amp;quot;anonymous&amp;quot; to post questions, answers, and VOTE? I am mainly interested the ability for anonymous/guest voting, as it would make the site more user friendly and provide a good option for people who don't want bother with registering in order to interact with the site. I see there have been a number of questions from people interested in allowing anonymous voting, but the answers have been that it would require a code-overhaul in order to track IP's to control voting limits. Is there not a work-around where all anonymous users could logon or interact under a guest account? Thanks for any input or advice on this!</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/29863/how-to-allow-non-registered-users-post-vote-guest-anonymous</guid>
<pubDate>Thu, 12 Dec 2013 02:58:30 +0000</pubDate>
</item>
<item>
<title>How to disable guest comments, voting and questions?</title>
<link>https://www.question2answer.org/qa/18772/how-to-disable-guest-comments-voting-and-questions</link>
<description>How to disable guest comments, voting and questions?&lt;br /&gt;
&lt;br /&gt;
I want to disable guest to comment, vote and asking qustion.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/18772/how-to-disable-guest-comments-voting-and-questions</guid>
<pubDate>Tue, 30 Oct 2012 09:21:57 +0000</pubDate>
</item>
<item>
<title>Anonymous users must enter email</title>
<link>https://www.question2answer.org/qa/1811/anonymous-users-must-enter-email</link>
<description>Does anyone know how to configure script that guest will have to enter their email if they want to post question or answer to them?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/1811/anonymous-users-must-enter-email</guid>
<pubDate>Fri, 09 Jul 2010 06:17:57 +0000</pubDate>
</item>
</channel>
</rss>