Hi there,
It seems that the logic conditions are not working. Has anyone already managed to create a logical connection between two questions?
Kind regards
Tom
I am pondering installing this plugin but I am not sure if it will provide me with the solution I am looking for. Does this generate a URL that I share with clients to fill out a form / questionnaire?
Or is this something that can generate surveys directly from our back end and then to send it automatically to the user.
]]>Hello,
is there a possibility to distribute a survey over several pages (multipage mode)?
I’m doing a very big survey right now. It would be great if there were only 5 questions per page, for example, to make everything a bit clearer.
It would be best if you could also include a progress bar.
Is there such a possibility?
kind regards
Thomas
Hello,
when I press the send button nothing happens. In the backend also nothing happens. I know the question was asked in this forum but there was no answer in the replies. I have now the same problem and hope for a solution. I love this plugin. Love it more if it do its work ??
Greats kohorte
I am trying to figure out how to set custom logic based on the answer of a question. I have a few that if they answer a certain way they should see an specific answer.
]]>Hello everybody
I would like to know if there is any way to implement this shortcode “[perfect_survey id =” number_example “]” in a popup, since it uses popup to respond and generates an error.
Best regards
]]>Hi Perfect Survey Team,
Is it possible to add a reset button or function to reset the survey before I submit it? Thanks.
]]>When modifying the style of Perfect Survey using my browser’s inspector, I can clearly customize the image blocks in an Image Choice survey.
When I add the code in the Additional CSS section of WordPress, the changes are not being applied. My edits for the Statistics section are applied just fine.
How do I fix this?
How can I get all of my CSS rules to be recognized by the Image Choice section?
]]>Hi,
I am having an issue with Perfect Survey. In my site health status, I get the following critical performance issue :
“An active PHP session was detected
A PHP session was created by a session_start() function call. This interferes with REST API and loopback requests. The session should be closed by session_write_close() before making any HTTP requests.”
When Perfect Survey is disabled, the issue disappears.
Actually, I was able to fix this problem by changing line 137 in PerfectSurveyPostType.php in my staging environment but I want your confirmation that I am not breaking anything before applying the fix to production :
@session_start([‘read_and_close’ => true]);
Of course, best of all would be a quick plugin update from your team but if you are too busy, could you please at least tell me whether changing this line is ok or risky.
Love your work so keep it up! ??
Thanks in advance,
Lavos
]]>What size image is recommended? I’ve tried different sizes and none of them fit.
]]>Hi everyone, what do you think of the new version 1.5.0?
Best
Perfect Survey Team
]]>Can you please help me how do I edit the font size? If I edit it in the wordpress theme editor nothing happens… Can you change it so it will? Or can you tell me how to change in another way? Also is there a way for me to change the background
]]>Hello!!
I recently downloaded the plugin and i think its amazing!
I have an issue about the excel cvs; the format of the data is really hard to read and its: one user answers = one excel block; which makes it really hard to read or sort into correct places.
Is it any way to fix it?
]]>I have an issue when i try to create a survey protected by password, after i post it any user can get into the survey, is there a way to fix this issue?
]]>Hello,
is there a way to add a back button to the survey to go back one question as well?
Regards,
Markus
I would like to display statistics results on the front side, Would you please let me know if it’s possible. https://prnt.sc/11ow0p4
]]>On the “single_statistic” page (and I don’t know where else) I have a problem with the dates.
The UTC date is displayed, not my time zone.
The problem I found on this file:
wp-content/plugins/perfect-survey/resources/backend/statistics/datagrid.php
[...]
<table class="introdatabyip display" cellspacing="0">
<thead>
<tr>
<th><?php _e('Starting date', 'perfect-survey') ?></th>
<th><?php _e('User', 'perfect-survey') ?></th>
<th><?php _e('User IP', 'perfect-survey') ?></th>
<th><?php _e('User', 'perfect-survey') ?></th>
</tr>
</thead>
<tbody>
<?php
foreach($data as $record){
$user = $record['user_id'];
?>
<tr>
<td><?php echo $record['date'];?></td>
<td><a href="<?php echo admin_url('edit.php?post_type='.PRSV_PLUGIN_CODE.'&page=single_statistic&id='.$ID.'&filters[user_id]='.$record['user_id'].'&filters[session_id]='.$record['session_id']);?>"><?php _e('View this survey', 'perfect-survey') ?></a></td>
<td><?php echo $record['ip'] ? $record['ip'] : _e('IP not available'); ?></td>
<?php if(!$user) { ?>
<td><?php echo __('User', 'perfect-survey') . ' ' . __('not registered', 'perfect-survey') ;?></td>
<?php } else { ?>
<td><a href="<?php echo get_edit_user_link($user);?>"><?php echo $record['username'];?></a></td>
<?php } ?>
</tr>
<?php } ?>
</tbody>
</table>
[...]
More precisely to this line:
<td><?php echo $record['date'];?></td>
Can anyone suggest me how to go and fix it please? Tks
]]>Hello, could you please tell me how I can change the font size of the survey questions?
Thanks.
Hello,
I wondered if there is any way to add conditional answers to the survey. Like if the user selects one answer other questions are visible and vice versa. So there are some “always visible questions” but the remaining questions are based on what answer the user has given.
Hi there,
I believe it should be possible with small effort to enable multi voting for logged in users. The voting of a user is stored in “wp_ps_data” and if I delete the user_id, this user can vote again.
Therefore, there should be a point in the script with something like a if then else statement to check, if user_id for question_id x is the same, as the logged in user
(“if (user_id == current_user && question_id == current_question) { show thank you } else {let user vote}”
Any hint would be great.
Thank you.
]]>Do I need to add functionality to send survey only selected employee, its possible to add custom field in your plugin?
]]>I create a custom page to display survey result like this :
Would you please let me know it is possible or not: https://prnt.sc/112u904,
And I manage to add a survey title but did not able to add the survey create date and result in by employee id,
Hello,
Is there any way to delete one single users survey data. I have a survey where I, myself sent in some answers to test the survey out. Now I have users who have answered the survey so I can’t delete all data.. Just wanted to know if there is some way for me to delete my answers so that they don’t mess with the statistics.
Hello,
Regarding the survey answers, I would like to prevent users taking multiple surveys but it seems that I can answer several times from the same IP address if I use another browser. Cookie only block is not enough. Are you planning to add IP blocking as well we can choose? Any planned released date?
Thank you
Andrea
Apparently, Perfect Survey writes its css code directly into index.php (see the mentioned page https://clausfaber.net/blog/fakten-sind-wie-kuehe/, it’s in line 313). This is annoying: css in the html code takes precedence to code in css files, and this prevents styling via the wordpress theme editor. I need to override every change with the “!important” flag, and too many of these flags make a mess and redundant code.
Is there any way to make the plugin write its code into a separate css file so that I can style it with the wordpress theme editor?
Many thanks, Claus
]]>Hi,
is it possible to skip a question or jump to a specific question if a specific answer was chosen?
If not, how could this be realized?
]]>When attempting to navigate the survey via keyboard, only the text boxes are focusable. Check boxes, radio buttons, and rating scales are neither focusable nor settable using the keyboard.
For comparison, here are the native HTML element versions (zero JS/CSS):
https://codepen.io/lionel-rowe/pen/BaLMdrO
In particular:
* Pressing Tab
focuses the next form element. For radio buttons, this is the next element after the radio button group, identified by having the same name attribute, rather than the next radio button within the group.
* Pressing Shift+Tab
navigates to the previous form element.
* When focused, all elements have visible styles to indicate that they are focused.
* Pressing Space
while a checkbox is focused toggles its state.
* While a radio button group is focused, pressing Left
or Up
selects the previous radio button. Pressing Right
or Down
selects the next radio button. Both directions wrap within the same radio button group.
* While a range slider is focused, pressing Left
or Down
reduces the value. pressing Right
or Up
increases the value. Neither direction wraps.
It’s possible to implement all this behavior from scratch using JavaScript, but it would be a lot easier and less error prone to simply use semantic HTML elements already available. Range slider looks to be supported by Internet Explorer 10, so it should be fine unless you need to support IE9 or below. Also, I think part of the problem with the existing radio-button and checkbox elements is that the semantic HTML versions you’re using are set to display: none
, so the browser doesn’t make them focusable. To remain focusable, you can use other styles that effectively hide them, for example:
display: block;
position: absolute;
opacity: 0;
width: 1px;
height: 1px;
right: 10000px;
]]>
After running the survey for a few days, how can i complete the survey and show users the results in place of survey questions?
Thanks
]]>Hi there,
any news about the new version, which could allow multiple votes?
Thank you,
mickna
Hello there,
i have created a survey, but i can only use it, if i am logged in wordpress. The survey is shown, but next question does not work.
In the console there is obviously a recaptcha problem. Do i have to enable recaptcha via google on my site?
kind regards for the help
]]>