<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum &#187; Forum: Surveys WordPress Plugin - Recent Topics</title>
		<link>http://projects.binnyva.com/forum/forum/surveys-wordpress-plugin</link>
		<description>Support for my OSS Projects</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 12:03:24 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://projects.binnyva.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://projects.binnyva.com/forum/rss/forum/surveys-wordpress-plugin/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>bmilliot on "Export to CVS not working."</title>
			<link>http://projects.binnyva.com/forum/topic/export-to-cvs-not-working#post-2489</link>
			<pubDate>Tue, 10 Jan 2012 20:01:25 +0000</pubDate>
			<dc:creator>bmilliot</dc:creator>
			<guid isPermaLink="false">2489@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Getting a page not found when exporting to CVS. Tried uploading all new files to no avail. Works on my localhost, but not my web server.&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kitdorado on "textarea responses... only 250 characters"</title>
			<link>http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters#post-2325</link>
			<pubDate>Thu, 14 Oct 2010 01:51:06 +0000</pubDate>
			<dc:creator>kitdorado</dc:creator>
			<guid isPermaLink="false">2325@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I love this plugin. But I've come across a little glitch. &#60;/p&#62;
&#60;p&#62;I have a survey of 32 questions: 31 are multiple choice, but 1 is a simple free response textarea. However, when exported to csv, only the first 250 characters appear.  &#60;/p&#62;
&#60;p&#62;Any ideas how to increase the number of characters which can be captured and exported?&#60;/p&#62;
&#60;p&#62;I tried this: &#60;a href=&#34;http://projects.binnyva.com/forum/topic/increase-textarea-and-textbox-maximum-of-characters&#34; rel=&#34;nofollow&#34;&#62;http://projects.binnyva.com/forum/topic/increase-textarea-and-textbox-maximum-of-characters&#60;/a&#62; and it didn't seem to work.&#60;/p&#62;
&#60;p&#62;Many thanks,&#60;br /&#62;
kitdorado
&#60;/p&#62;</description>
		</item>
		<item>
			<title>seanjc on "Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/publi"</title>
			<link>http://projects.binnyva.com/forum/topic/warning-sprintf-functionsprintf-too-few-arguments-in-homethehort1publi#post-2464</link>
			<pubDate>Tue, 08 Nov 2011 00:08:00 +0000</pubDate>
			<dc:creator>seanjc</dc:creator>
			<guid isPermaLink="false">2464@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I get this warning once the voter has pressed Submit. It appears on the page asking for an email address. The votes are still sent through to me though. &#60;/p&#62;
&#60;p&#62;Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/public_html/wp-content/plugins/surveys/wpframe.php on line 53
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mbnoimi on "Creating a new translation"</title>
			<link>http://projects.binnyva.com/forum/topic/creating-a-new-translation#post-2097</link>
			<pubDate>Sun, 20 Dec 2009 10:50:58 +0000</pubDate>
			<dc:creator>mbnoimi</dc:creator>
			<guid isPermaLink="false">2097@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm planning to use surveys-wordpress-plugin in my blog, but I noticed that it's not supporting multi-languages so I tried to translate it by myself but I faced a some problems because I know nothing about PHP (I'm C++/Qt developer), so could you please help me for fixing it:&#60;/p&#62;
&#60;p&#62;1) For adding multi-language support I've added the following two line in surveys.php&#60;br /&#62;
&#60;code&#62;$plugin_dir = basename(dirname(__FILE__));&#60;br /&#62;
load_plugin_textdomain( 'surveys', ABSPATH.'wp-content/plugins/'. $plugin_dir.'/', $plugin_dir.'/' ); &#60;/code&#62;&#60;br /&#62;
then extracted strings from the source code by poEdit by inputing two filters as a keywords &#34;__&#34; and &#34;_e&#34; but I got five strings only!!!&#60;br /&#62;
I tried to extract string manually by editing strings of source code, but I got a terrible result because I'm not accustomed with PHP strings.&#60;/p&#62;
&#60;p&#62;2) All generated tables (in surveys_activate() function) not supporting UTF8 so I edited SQL queries manually for supporting UTF8 see what I edited plz:&#60;br /&#62;
&#60;code&#62;		$sql = &#34;CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_answer (&#60;br /&#62;
					ID int(11) unsigned NOT NULL auto_increment,&#60;br /&#62;
					question_ID int(11) unsigned NOT NULL,&#60;br /&#62;
					answer varchar(255) CHARACTER SET &#60;/code&#62;&#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					sort_order int(3) NOT NULL,&#60;br /&#62;
					INDEX ( question_ID ),&#60;br /&#62;
					PRIMARY KEY  (ID)&#60;br /&#62;
					) ;&#60;br /&#62;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_question (&#60;br /&#62;
					ID int(11) unsigned NOT NULL auto_increment,&#60;br /&#62;
					survey_ID int(11) unsigned NOT NULL,&#60;br /&#62;
					question mediumtext CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					allow_user_answer int(1) NOT NULL default '0',&#60;br /&#62;
					allow_multiple_answers int(2) NOT NULL default '0',&#60;br /&#62;
					user_answer_format enum('entry','textarea','checkbox') CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL default 'entry',&#60;br /&#62;
					PRIMARY KEY  (ID),&#60;br /&#62;
					KEY survey_id (survey_ID)&#60;br /&#62;
					) ;&#60;br /&#62;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_result (&#60;br /&#62;
					ID int(11) unsigned NOT NULL auto_increment,&#60;br /&#62;
					survey_ID int(11) unsigned NOT NULL,&#60;br /&#62;
					name varchar(50) CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					email varchar(50) CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					added_on datetime NOT NULL,&#60;br /&#62;
					INDEX ( survey_ID ),&#60;br /&#62;
					PRIMARY KEY  (ID)&#60;br /&#62;
					) ;&#60;br /&#62;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_result_answer (&#60;br /&#62;
					ID int(11) unsigned NOT NULL auto_increment,&#60;br /&#62;
					result_ID int(11) unsigned NOT NULL,&#60;br /&#62;
					answer_ID int(11) unsigned NOT NULL,&#60;br /&#62;
					question_ID INT( 11 ) UNSIGNED NOT NULL,&#60;br /&#62;
					user_answer VARCHAR( 255 ) CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					INDEX ( question_ID ),&#60;br /&#62;
					INDEX ( answer_ID ),&#60;br /&#62;
					INDEX ( result_ID ),&#60;br /&#62;
					PRIMARY KEY  (ID)&#60;br /&#62;
					) ;&#60;br /&#62;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_survey (&#60;br /&#62;
					ID int(11) unsigned NOT NULL auto_increment,&#60;br /&#62;
					name varchar(50) CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					description mediumtext CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					final_screen mediumtext CHARACTER SET &#60;code&#62;utf8&#60;/code&#62; COLLATE &#60;code&#62;utf8_general_ci&#60;/code&#62; NOT NULL,&#60;br /&#62;
					status enum('1','0') NOT NULL default '0',&#60;br /&#62;
					added_on datetime NOT NULL,&#60;br /&#62;
					PRIMARY KEY  (ID)&#60;br /&#62;
					) ;&#34;;&#60;/p&#62;
&#60;p&#62;3) Because Arabic uses RTL direction I've edited style.css by adding &#34;direction: rtl;&#34; to all file content, but this is not smart solution because it's not working in case of multi-language (I'm planning to use surveys-wordpress-plugin in English &#38;amp; Arabic blog).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dustycat on "Fatal error: func_get_args():"</title>
			<link>http://projects.binnyva.com/forum/topic/fatal-error-func_get_args#post-2453</link>
			<pubDate>Fri, 21 Oct 2011 15:41:45 +0000</pubDate>
			<dc:creator>dustycat</dc:creator>
			<guid isPermaLink="false">2453@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Fatal error: func_get_args(): Can't be used as a function parameter in /home/scs/public_html/wp-content/plugins/surveys/wpframe.php on line 59&#60;/p&#62;
&#60;p&#62;This is the message I get after I have activated the plugin and clicked on Surveys Settings in the Settings Menu&#60;/p&#62;
&#60;p&#62;Please advise how to fix this
&#60;/p&#62;</description>
		</item>
		<item>
			<title>llummus on "multiple text entries"</title>
			<link>http://projects.binnyva.com/forum/topic/multiple-text-entries#post-2450</link>
			<pubDate>Wed, 28 Sep 2011 23:22:48 +0000</pubDate>
			<dc:creator>llummus</dc:creator>
			<guid isPermaLink="false">2450@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I'm trying to make a question that asks:&#60;/p&#62;
&#60;p&#62;How many adults and how many children in each age range are in your household?&#60;br /&#62;
Answers:&#60;br /&#62;
Adults:&#60;br /&#62;
Children 0-3:&#60;br /&#62;
Children 4-6:&#60;br /&#62;
Children 7-12:&#60;br /&#62;
Children 13-17:&#60;/p&#62;
&#60;p&#62;I want each of the answers to have a text box instead of a checkbox.  I also want the user to be able to answer multiple questions.  I've played around with the different settings and can't figure out how to make this possible.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>llummus on "Too may answers"</title>
			<link>http://projects.binnyva.com/forum/topic/too-may-answers#post-2446</link>
			<pubDate>Tue, 20 Sep 2011 03:19:27 +0000</pubDate>
			<dc:creator>llummus</dc:creator>
			<guid isPermaLink="false">2446@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I have 4 answers for a question, but it is automatically including a 5th blank answer with a checkbox.  The main page of the survey confirms that I have four answers.  Any suggestions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>swcomm on "IE 8 Page Background not displaying"</title>
			<link>http://projects.binnyva.com/forum/topic/ie-8-page-background-not-displaying#post-2444</link>
			<pubDate>Thu, 15 Sep 2011 06:33:11 +0000</pubDate>
			<dc:creator>swcomm</dc:creator>
			<guid isPermaLink="false">2444@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;This is very strange. Recently upgraded to wp 3.2.1. Surveys work fine, except the page with the survey inserted via shortcode doesn't display the page background in IE 8. Has to be a z-index issue, because the background is there, it's just covered up with solid white. Once you submit the survey question responses and get to the name/email portion, the background starts displaying correctly. I'm not entirely sure which php file in the survey plugin to look at for this -- can you advise?  Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cnghiem on "image not displaying in question"</title>
			<link>http://projects.binnyva.com/forum/topic/image-not-displaying-in-question-1#post-2436</link>
			<pubDate>Sat, 10 Sep 2011 03:31:52 +0000</pubDate>
			<dc:creator>cnghiem</dc:creator>
			<guid isPermaLink="false">2436@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;When we insert an image to our question, it does not display when viewing the survey. Instead we get slashes displayed when taking the survey: \&#34;\&#34;&#60;/p&#62;
&#60;p&#62;We insert the image by clicking on the image icon at the top and then inserting it to the post.&#60;/p&#62;
&#60;p&#62;Do you know how we can solve this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexcher on "Remove the Submit Survey button from all questions except last one"</title>
			<link>http://projects.binnyva.com/forum/topic/remove-the-submit-survey-button-from-all-questions-except-last-one#post-2197</link>
			<pubDate>Tue, 16 Mar 2010 21:16:47 +0000</pubDate>
			<dc:creator>alexcher</dc:creator>
			<guid isPermaLink="false">2197@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I was wondering if there is an ability to remove the Submit Survey button from all of the questions except for the last one? So, right now each question has a Submit Survey button, even though there are many more questions after. How can we disable that?&#60;/p&#62;
&#60;p&#62;Also, is there a possibility to rename the Submit Survey button to just Submit?&#60;/p&#62;
&#60;p&#62;PS. Excellent work on the plug-in, thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>logicdesign on "Plugin feedback"</title>
			<link>http://projects.binnyva.com/forum/topic/plugin-feedback#post-2418</link>
			<pubDate>Thu, 30 Jun 2011 18:13:54 +0000</pubDate>
			<dc:creator>logicdesign</dc:creator>
			<guid isPermaLink="false">2418@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;First of all i want to give thanks to Binnyva for his opensource work that i deeply apreciate. &#60;/p&#62;
&#60;p&#62;I'm studiing this plugin as i need a good/free survey plugin for more than one of my projects. I've been trying many other plugins but they ask money or show add during the survey and i definitly dont want any of those solutions.&#60;/p&#62;
&#60;p&#62;This one is one of the best survey free plugins i've found for wordpress, and it proves that procedural developement can be as good in term of results as oriented object (sometimes even better).&#60;/p&#62;
&#60;p&#62;Next step i'm going to do is to solve the main problems this plugin still has:&#60;br /&#62;
1. It doesnt check the answerquestion's quality given by visitors.&#60;br /&#62;
2. It doesn't have a mandatory option on questions.&#60;br /&#62;
3. It doesn't have an anti spam system. &#60;/p&#62;
&#60;p&#62;There is a &#34;bug&#34; on the script.js, on the function nextQuestion() the line &#60;/p&#62;
&#60;p&#62;[code]&#60;br /&#62;
if(survey_questions_per_page != 0) return nextPage(e); // Multi question per page&#60;br /&#62;
[/code] &#60;/p&#62;
&#60;p&#62;is executed before testing if there was any question answered on the survey, so it skip that js test and go forward to the next survey page. To correct that this line has to be moved after to the end of the function. &#60;/p&#62;
&#60;p&#62;Even with this correction, the user (who maybe doesnt have js activated) should be forced to answer some/all questions before skipping to next page or to submit the form. &#60;/p&#62;
&#60;p&#62;I will expend sometime to correct some of those problems and submit my version of this plugin shortly. &#60;/p&#62;
&#60;p&#62;If you want to contribute/give ideas to solve some of the problems i'm talking about here, please contact me!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>buyingahousemadesimple on "How to add another field to the final form?"</title>
			<link>http://projects.binnyva.com/forum/topic/how-to-add-another-field-to-the-final-form#post-2401</link>
			<pubDate>Tue, 19 Apr 2011 07:24:39 +0000</pubDate>
			<dc:creator>buyingahousemadesimple</dc:creator>
			<guid isPermaLink="false">2401@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;This is a great plugin. I tried 2 others that didn't do what I wanted until I found this plugin. Thanks. &#60;/p&#62;
&#60;p&#62;Is there a way to add another field after the email on the final form so I can give people the option to leave me their phone number? &#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Karen
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dpbklyn on "Format Surveys using CSS"</title>
			<link>http://projects.binnyva.com/forum/topic/format-surveys-using-css#post-2371</link>
			<pubDate>Fri, 25 Feb 2011 20:59:35 +0000</pubDate>
			<dc:creator>dpbklyn</dc:creator>
			<guid isPermaLink="false">2371@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hi Binny!&#60;/p&#62;
&#60;p&#62;Thank you for a great plugin!&#60;/p&#62;
&#60;p&#62;I am trying to format the text, title and buttons using CSS.  Is there a way todo this so that our changes will not disappear when we install the next update?&#60;/p&#62;
&#60;p&#62;Thank you,&#60;/p&#62;
&#60;p&#62;dp
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wwwebbrowser on "Surveys in Sidebar Widget"</title>
			<link>http://projects.binnyva.com/forum/topic/surveys-in-sidebar-widget#post-2175</link>
			<pubDate>Fri, 26 Feb 2010 05:52:12 +0000</pubDate>
			<dc:creator>wwwebbrowser</dc:creator>
			<guid isPermaLink="false">2175@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;This is a great tool! Are there any immediate plans to make it &#34;Widget friendly?&#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>klyz on "how to limit user to choose only 3 answers?"</title>
			<link>http://projects.binnyva.com/forum/topic/how-to-limit-user-to-choose-only-3-answers#post-2367</link>
			<pubDate>Thu, 03 Feb 2011 14:01:36 +0000</pubDate>
			<dc:creator>klyz</dc:creator>
			<guid isPermaLink="false">2367@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I look at the code.....I couldn't find out...&#60;/p&#62;
&#60;p&#62;Here is the situation, I have 15 answers&#60;/p&#62;
&#60;p&#62;I want user only allow to choose three&#60;/p&#62;
&#60;p&#62;otherwise display a error message&#60;/p&#62;
&#60;p&#62;How do I make this happen?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Sal Collaziano on "How to change survey completion text?"</title>
			<link>http://projects.binnyva.com/forum/topic/how-to-change-survey-completion-text#post-2358</link>
			<pubDate>Mon, 24 Jan 2011 20:11:22 +0000</pubDate>
			<dc:creator>Sal Collaziano</dc:creator>
			<guid isPermaLink="false">2358@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;I'm looking for a way to edit the following text:&#60;/p&#62;
&#60;p&#62;Hi, There is a new result for the survey at (URL)... Thanks for taking the survey. You input is very valuable to us.&#60;br /&#62;
If you want, you can attach your name to your survey answers. If you want the result to be anonymous, just ignore this form.&#60;/p&#62;
&#60;p&#62;If anyone has any suggestions, I'd appreciate it.&#60;/p&#62;
&#60;p&#62;Thank you very much!&#60;/p&#62;
&#60;p&#62;Sal C.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "export to CSV stopped working"</title>
			<link>http://projects.binnyva.com/forum/topic/export_to_csv_stopped_working#post-1240</link>
			<pubDate>Tue, 07 Jul 2009 06:11:19 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">1240@http://projects.binnyva.com/forum/</guid>
			<description>Hi, I  have been using your survey plugin and it was working great.  For some reason the export to CSV has stopped working.  In Firefox, I get the error message:&#60;br /&#62;
&#60;br /&#62;
Firefox can't find the file at &#60;!-- m --&#62;&#60;a class=&#34;postlink&#34; href=&#34;http://freewhistlerparking.com/wp-content/plugins/surveys/export.php?survey=2&#34;&#62;&#60;a href=&#34;http://freewhistlerparking.com/wp-conte&#34; rel=&#34;nofollow&#34;&#62;http://freewhistlerparking.com/wp-conte&#60;/a&#62; ... p?survey=2&#60;/a&#62;&#60;!-- m --&#62;&#60;br /&#62;
&#60;br /&#62;
Any ideas?&#60;br /&#62;
&#60;br /&#62;
Thanks, Tim.</description>
		</item>
		<item>
			<title>dskallman on "Export &#38; lightbox pop-up?"</title>
			<link>http://projects.binnyva.com/forum/topic/export-lightbox-pop-up#post-2338</link>
			<pubDate>Sat, 06 Nov 2010 00:19:56 +0000</pubDate>
			<dc:creator>dskallman</dc:creator>
			<guid isPermaLink="false">2338@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hi Binny, &#60;/p&#62;
&#60;p&#62;Love this plugin. Just have two questions, one is the export isn't working and just takes me back to my homepage. Is there a way to get csv of survey data? Two is that everytime I load the survey page it pops up a lightbox. Is there a conflict with a gallery plugins or the media files?  &#60;/p&#62;
&#60;p&#62;Thanks, &#60;/p&#62;
&#60;p&#62;Dana
&#60;/p&#62;</description>
		</item>
		<item>
			<title>robanna on "Previous submition check"</title>
			<link>http://projects.binnyva.com/forum/topic/previous-submition-check#post-2352</link>
			<pubDate>Tue, 11 Jan 2011 00:46:55 +0000</pubDate>
			<dc:creator>robanna</dc:creator>
			<guid isPermaLink="false">2352@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I love this plugin and was hoping to get a feature in the next release.&#60;br /&#62;
Would there be a way to get a check to see if the ip has previously submitted a survey? If they have, send them to the Thank You page.&#60;/p&#62;
&#60;p&#62;This would prevent people from skewing the result and I think it would make this plugin great.&#60;/p&#62;
&#60;p&#62;Thanks-&#60;br /&#62;
robanna
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fansari on "How to create other Field option"</title>
			<link>http://projects.binnyva.com/forum/topic/how-to-create-other-field-option#post-2350</link>
			<pubDate>Wed, 29 Dec 2010 11:38:39 +0000</pubDate>
			<dc:creator>fansari</dc:creator>
			<guid isPermaLink="false">2350@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I am having multiple choice answer &#38;amp; a text field in a same question. There is an option in your plugin to show multiple answers &#38;amp; it didn't have that option to both in same question.&#60;br /&#62;
Plz reply to my issue.&#60;/p&#62;
&#60;p&#62;Thankx
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sulfsby on "Linebreaks in questions and responses causes linebreak in CSV"</title>
			<link>http://projects.binnyva.com/forum/topic/linebreaks-in-questions-and-responses-causes-linebreak-in-csv#post-2348</link>
			<pubDate>Thu, 23 Dec 2010 04:37:18 +0000</pubDate>
			<dc:creator>sulfsby</dc:creator>
			<guid isPermaLink="false">2348@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;The linebreaks in the CSV makes a new record and the CSV out of sync. Would be fine if linebreaks in questions and user responses are substituted by space in the CSV.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nontechblogger on "Plugin broken?"</title>
			<link>http://projects.binnyva.com/forum/topic/plugin-broken#post-2345</link>
			<pubDate>Mon, 06 Dec 2010 10:07:37 +0000</pubDate>
			<dc:creator>nontechblogger</dc:creator>
			<guid isPermaLink="false">2345@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Is Surveys broken?  On my blog, it's been displaying the short code [surveys1] for some time.  I thought it was a temporary glitch, but it stays that way.  It was working before.  What happened?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sevensoutbill on "Display results on another page?"</title>
			<link>http://projects.binnyva.com/forum/topic/display-results-on-another-page#post-2219</link>
			<pubDate>Sat, 24 Apr 2010 00:09:15 +0000</pubDate>
			<dc:creator>sevensoutbill</dc:creator>
			<guid isPermaLink="false">2219@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I'd like to display results of my survey in real time on another page of my site (after members have logged in). Is there an easy way to do this?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Bill
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ausdream on "Validate Survey Input"</title>
			<link>http://projects.binnyva.com/forum/topic/validate-survey-input#post-2245</link>
			<pubDate>Tue, 08 Jun 2010 20:36:02 +0000</pubDate>
			<dc:creator>ausdream</dc:creator>
			<guid isPermaLink="false">2245@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;The survey plugin is great but the input is not validated, thus a person taking the survey is not required to answer any questions.&#60;/p&#62;
&#60;p&#62;Is there a javascript function you can add to script.js to validate the surveys?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>weles on "problem with IE"</title>
			<link>http://projects.binnyva.com/forum/topic/problem-with-ie#post-2332</link>
			<pubDate>Fri, 29 Oct 2010 16:01:40 +0000</pubDate>
			<dc:creator>weles</dc:creator>
			<guid isPermaLink="false">2332@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Do you have any idea why my survey is not displayed correctly in IE? FF, Opera and Chrome display full list of 11 questions. IE is cutting the list after 3rd one.&#60;/p&#62;
&#60;p&#62;You can see it here: &#60;a href=&#34;http://www.marcinsklodowski.pl/index.php/ankiety-i-opinie&#34; rel=&#34;nofollow&#34;&#62;http://www.marcinsklodowski.pl/index.php/ankiety-i-opinie&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Would appreciate any suggestion how to fix it. Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OUBeaver on "No Questions Found"</title>
			<link>http://projects.binnyva.com/forum/topic/no-questions-found#post-2321</link>
			<pubDate>Thu, 30 Sep 2010 20:08:43 +0000</pubDate>
			<dc:creator>OUBeaver</dc:creator>
			<guid isPermaLink="false">2321@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hello.  I am very new to Surveys.  Installed and activated just fine.  Can create a survey no problem.  However, after creating a question it takes me to the Manage Questions page with &#34;No Questions Found&#34;.  However, they do appear in the responses page (with no responses of course).  Any one else experience this?&#60;/p&#62;
&#60;p&#62;WordPress 2.7.1&#60;/p&#62;
&#60;p&#62;Thanks.&#60;/p&#62;
&#60;p&#62;_Brad
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jmarciante on "Surveys and Questions not being created - but Answers are Saved!"</title>
			<link>http://projects.binnyva.com/forum/topic/surveys-and-questions-not-being-created-but-answers-are-saved#post-2246</link>
			<pubDate>Thu, 10 Jun 2010 19:24:20 +0000</pubDate>
			<dc:creator>jmarciante</dc:creator>
			<guid isPermaLink="false">2246@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hello Binny and forum!&#60;br /&#62;
We are having problems with the survey plugin. We are running version 2.8.4 of Wordpress and have your plugin from the 1/5/2010 updates. When creating a survey, it takes you all the way through to creating the questions. However, when you return to Manage Surveys, it tells you that there are no surveys created. The same thing happens with the questions. If you go to the Questions Page, there are no questions saved. The only place data is being stored is in the Results. If you go to see the results, you can see all of the answers you have created.&#60;br /&#62;
Anyone have any ideas what is going on with the code?&#60;br /&#62;
Many thanks,&#60;br /&#62;
Jenn
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ectic on "attach 2 more field to the email survey"</title>
			<link>http://projects.binnyva.com/forum/topic/attach-2-more-field-to-the-email-survey#post-2297</link>
			<pubDate>Mon, 16 Aug 2010 23:39:06 +0000</pubDate>
			<dc:creator>ectic</dc:creator>
			<guid isPermaLink="false">2297@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hi, I would like to know if it's possible to add more field beside name and email in DB / email when submiting ? &#60;/p&#62;
&#60;p&#62;Can't find out how to do that. &#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Jean-Marc
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fuzzie on "Remove &#34;Leave a Reply&#34;"</title>
			<link>http://projects.binnyva.com/forum/topic/remove-leave-a-reply#post-2233</link>
			<pubDate>Fri, 04 Jun 2010 00:59:20 +0000</pubDate>
			<dc:creator>fuzzie</dc:creator>
			<guid isPermaLink="false">2233@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;We don't allow comments on the site, but would like to post a survey.&#60;br /&#62;
How do we remove &#34;Leave a Reply You must be logged in to post a comment.&#34;&#60;br /&#62;
from the bottom of each question?&#60;/p&#62;
&#60;p&#62;Thanks for the great plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>LLFiggs on "Need Help Please"</title>
			<link>http://projects.binnyva.com/forum/topic/need-help-please#post-2261</link>
			<pubDate>Sat, 10 Jul 2010 11:27:34 +0000</pubDate>
			<dc:creator>LLFiggs</dc:creator>
			<guid isPermaLink="false">2261@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Survey is easy to load &#38;amp; easy to use but has problems:&#60;/p&#62;
&#60;p&#62;1) Questions need to be numbered&#60;/p&#62;
&#60;p&#62;2) I'd like my 6 questions together on the same page (or on 2 pages), not 1 question on each page.&#60;/p&#62;
&#60;p&#62;3) Submit button should appear only after the last question.&#60;/p&#62;
&#60;p&#62;4) It would be good to include registration for the user's name &#38;amp; email.&#60;/p&#62;
&#60;p&#62;Looks like this forum is not monitored frequently; so I may have to find an alternative. Need to launch my survey quickly!&#60;/p&#62;
&#60;p&#62;LFiggs
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

