Questionnaire

Maintained by Mike Churchward
Custom Survey Creation
Price option: Free

Supports Moodle 1.9-5.2 See all versions
Latest release: 2 months ago
Installations: 16953
Downloads (last 90 days): 3291

Frankenstyle name: mod_questionnaire
Activities

Comments

Comments are no longer open for new posts. Existing comments remain available to read.

Hi, regarding Frank Mulder's message:
We - as maintainers of filter_multilang2 and users of both mod_questionnaire and filter_multilang2 - have also detected this type of filter support issues in some places inside this plugin.
While we still haven't been able to fully analyse the plugin to submit a proper PR yet, you can look at this change to see what kind of changes are needed in order to fix this kind of issues:
https://github.com/izendegi/moodle-mod_questionnaire/commit/995f80b0320ce2cbc70ad6de4210835c05e69b9b
We would love to collaborate with both Frank and the plugin maintainers to get these issues resolved. Let's work together to find the best way forward and get this fixed.
Best regards
Problem gone - thanks a lot smile .
Thanks for the version notice. That has been fixed.
Hi,
Today's
https://moodle.org/plugins/pluginversion.php?id=41982
Questionnaire 5.0.3 (Build - 2026052200)
Moodle 4.5, 5.0, 5.1, 5.2
Released: Friday, 22 May 2026, 6:26 PM
says this version of Questionnaire is also for Moodle 4.5, which it is not.
$plugin->requires = 2025041400.00; // Moodle 5.0 and up.
My Moodle 45 picked up this as an available upgrade, then - luckily - failed to validate, so I could cancel the uprade.
However the available upgrades for plugins (/admin/plugins.php#updatable) will keep pestering me now.
Maybe something can be done to remove that needless trigger?
TIA
Hello, when using the slider I'm unable to use the multi language filter (v2) in the labels, they are simple displayed as text and not used as filter like in other type of questions. It would be good when the lanuage filter is also applied correctly on the labels of the slider.
HI, I have Moodle 4.5.5 installed along with the Questionnaire plugin version 4.4.0. However, when I go to edit the feedback sections, in the section questions area, the trash icon appears excessively large.
Additionally, I would like to ask whether the “Radar” chart type is still available, as it does not appear among the chart options.
@ Çağrı Akkaya - the "vall" page shows the totals for all questions in the questionnaire. I don't see how pagination would work there. Perhaps you can post more details at the questionnaire forum (https://moodle.org/mod/forum/view.php?id=2642)?
/mod/questionnaire/report.php?instance=16&action=vall The page is loading slowly because I have too many records. Can you add pagination for this page? Dates are displayed as day(number)/day(name: Monday, Tuesday, etc.)/year. How can I replace day(name) with month?
Suzana de Andrade Ferreira gave a very good answer for version 4.5, but for version 5.0 it is better to use:
#page-mod-questionnaire-questions .qcontainer .qnums ~ input[type=image] {
max-height: 1em;
}
We are using at Moodle 4.5 and made some css adjust to correct the huge icons (you can do it at theme custom css or at aditional HTML):
.req {
font-size: x-small;
max-width: 10px!important;
}
.qn-container input {
max-width: 10px;
}
@Eugene Matusov thanks alot for this )
Hi,
The mlang2 filter is not applied consistently.
Let's assume a rate type questionnaire with 2 scale items and the following "Named degrees":
--------------------------------------------------------------------
0=some html 😟 /some html
{mlang EN}bla..bla{mlang}
{mlang RO}bla..bla{mlang}
1=bla..bla
--------------------------------------------------------------------
When the teacher wants to see:
1) "List of responses" (every html tags are displayed in clear; mlang2 tags are NOT processed, all are displayed)
2) "Summary" (mlang2 tags are NOT processed, all are displayed)
This bug(s) appears in the header (named degrees); only the question text is displayed correctly every time!
Hello! We have the same issue on our platform that we just updated to 4.5. Will there be official versions of the plugin for 4.5 and 5.X ?
@Eugene,
On my Moodle version 5.1 I am using Questionnaire mod_questionnaire 4.4.0 (Build - 2024082900) 2022121601.01 from the github at https://github.com/PoetOS/moodle-mod_questionnaire and cannot see the problem you describe.
@Joseph,
Thanks a LOT! I tested the Questionnaire plugin (the one from GitHub that you directed me to), and it seems to work fine, except for one minor but annoying thing. Namely, when you try to move questions to change their order, the location icons look super small. I asked ChatGPT to solve the problem, and it provided a simple solution by amending the style.css file at the end of it with the following snippet:
/* Fix for tiny move location icons in Moodle 5.0 Questionnaire */
#page-mod-questionnaire-questions input[type="image"][title="Move here"],
#page-mod-questionnaire-questions input[type="image"][alt="Move here"] {
width: 32px !important;
height: 32px !important;
max-width: 32px !important;
max-height: 32px !important;
padding: 2px;
}