Dear,
i use wp 3.4, qtranslate 2.5.29 and survey extended 0.6.
When i insert question, i have field for multi language, and when i put more language,
(or tags, e.g.: <!–:en–>engleski<!–:–><!–:hr–>hrvatski<!–:–>
or
[:en]texten[:de]textde
but nothing help (in all other post/page, this tags works fine.
Please help
]]>Hello.
How could I change language of text strings for this plugin.
There is po-file into “lang” directory.
How can it be used after translating? Should be created locale po-file with help of it. What name with?
Thanks.
]]>When I create a survey, it appears to be working correctly. I enter the survey information then go on to editing the questions. However, the surveys do not appear on the “Manage Surveys” page.
I’ve checked the database and the questions are stored properly but nothing is written to the surveys table. I can also use the shortcode [SURVEYS_EXTENDED 0] to display the stored questions but responses are not stored when submitted.
The plugin installed and activated OK, and all the tables appear to be present in the database. I’ve used the plugin successfully on a cloned WordPress installation on my private development server, but that server is Apache on Linux. The problem server is running IIS7 on Windows, with MySQL 5.x, PHP 5.x.
]]>I wanted all my questions to be in bold, while the answers were in regular weight text. I thought others might want to do the same. Here’s how:
In the plugins section of your WP Dashboard, click Editor and in Select Plugin to Edit, choose Surveys Extended.
Click to open the file called surveys-extended/show_survey.php
Scroll down about 3/4 of the file and find the line that says echo "{$ques->question}\n";
Now, you have to add a line before and a line after that line. The line that goes before is:
echo "<p>";
The line that goes after is:
echo "</p>";
Click Update File to save your changes.
Essentially, that puts <p> </p>
tags around the question.
Now, we need to style the <p> tags. To do that, on the right side, open the file called: surveys-extended/style.css
At the bottom of the file, type (or copy/paste) the following:
.survey-area p{
margin:0;
padding: 0;
font-weight: bold;
font-size: 15px;
}
This will bold any text enclosed in <p> </p>
tags and increase the font size from the current 12px to 15px.
Click Update File to save your changes.
NOTE: If you ever update the plugin, it will likely erase these changes.
]]>I moved the submit button to the bottom of the survey and I thought others might want to do the same, so here’s how I did it.
In the plugins section of your WP Dashboard, click Editor and in Select Plugin to Edit, choose Surveys Extended.
Click to open the file called surveys-extended/show_survey.php
Scroll down about 3/4 of the way through the file and locate the line that says:
<input type="submit" name="action" id="survey-action-button" value="<?php e("Submit Survey", 'surveyse') ?>" />
Cut that line and paste it just above the line that says:
</form>
This will move the Submit Survey button to the bottom of the survey.
Incidentally, while you’re there, you can also change the words that appear in the button. Maybe you want it to say Vote Now! or Send Survey or something else. On the line you just pasted find the words Submit Survey between quotes and change it to whatever you want it to say.
Click Update File to save your changes
NOTE: If you ever update the plugin, it will likely erase these changes.
]]>hi, great survey plugin. If anyone can help with this its much appreciated.
I want to add some html into the “Questions” field of a survey (a link and a div). It works fine the first time through, but if the Edit button is clicked next to the existing question (with html) any time there is a ‘ or ” there is a back slash before and after that is inserted. When saved, of course this breaks things. Here is in an example of what i mean:
Why is the plugin adding a back slash whenever there is a single or double quotation?
Thanks for any help,
Bodhi Mcgee
]]>I created a survey and saved it. I created questions. But when I go to “Manage Surveys” it says I have none.
]]>