Moodle Plugins directory: Questionnaire | Moodle.org
Questionnaire
Activities ::: mod_questionnaire
Maintained by
Mike Churchward
Custom Survey Creation
Latest release:
16561 sites
2k downloads
253 fans
Current versions available: 22
Create your own surveys using this tool.
SUPPORT DISCUSSION: http://moodle.org/mod/forum/view.php?id=2642
DEVELOPERS NOTE - Questionnaire is tracked in Github at https://github.com/remotelearner/moodle-mod_questionnaire. Contact Mike Churchward if you want "push" access.
Contributors
Mike Churchward (Lead maintainer)
Joseph Rézeau: Former co-maintainer
Please login to view contributors details and/or to contact them
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;
}
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.
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!
.req {
font-size: x-small;
max-width: 10px!important;
}
.qn-container input {
max-width: 10px;
}
#page-mod-questionnaire-questions .qcontainer .qnums ~ input[type=image] {
max-height: 1em;
}
Additionally, I would like to ask whether the “Radar” chart type is still available, as it does not appear among the chart options.
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
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