Hi Scott,
By any chance, have you tried using the Generico filter to create tab items in a description? It works every place I have tried it and you have the added benefit of being able to use all the other Generico templates throughout your site.
Hi Scott,
By any chance, have you tried using the Generico filter to create tab items in a description? It works every place I have tried it and you have the added benefit of being able to use all the other Generico templates throughout your site.
Hi
on the assignment page (/mod/assign/view.php?id=)
i want change "#next-activity-link" to be redirected to course page and change the link name to "Go to Course Page".
Please suggest the CSS for that
Thank You
Hi
Anyone please provide HTML code for creating button on assignment page and redirecting to coursepage
Before in earlier versions, when grading group assignments, the teacher only got one assignment pr. group now all members of the group is in the grading view mixed in with members from other groups.
There seems to be missing a filter that filer users on groups, OR is there an option that we have overlooked.
Hi
Quizzes seem to have a 'back to course' button once the user has completed a quiz. Is there a way to get this same button appearing after an assignment is submitted? A number of our students are confused when taking a test that has a combination of both "online text" assignments and quiz assignments because the quiz has this button and the assignment does not.
Thanks in advance
Hi,
I would like to change the Pen stroke width in the PDF Annotation feedback. I'm using 3.9.
Things that I have tried but had no result:
Changed the value of STROKEWEIGHT = 1 from 4
in
mod/assign/feedback/editpdf/yui/src/editor/js/globals.js
mod/assign/feedback/editpdf/yui/build/moodle-assignfeedback_editpdf-editor/moodle-assignfeedback_editpdf-editor.js
mod/assign/feedback/editpdf/yui/build/moodle-assignfeedback_editpdf-editor/moodle-assignfeedback_editpdf-editor-debug.js
2. Purged JS cache
3. Restarted apache and PHP
I would appreciate if anyone can tell me how change the pen width. It really does need to be much thinner.
Am getting the error when add an assignment activity and click on save . (moodle 3.9)
Here's my answer to this post ↗.
Hello Sathiraju,
It seems to me that this is possible. You will also need to replace "quizattempt" with "submissionaction".
Here is the code for assignment only:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script> <script> $(document).ready(function(){ if (window.location.href.indexOf("https://theURLofyourMoodleSite/mod/assign/view.php") > -1) { $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div><div style='text-align:center;position:relative;top:8px;'>OR</div>").insertBefore($("div.submissionaction")); }; }) function backtotheCourse() { var x = $("ol.breadcrumb li:eq(-2) > a").attr("href"); window.location.replace(x); } </script>
Here is the code for both quiz and assignment:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script> <script> $(document).ready(function(){ if (window.location.href.indexOf("https://theURLofyourMoodleSite/mod/quiz/view.php") > -1) { if ($(".continuebutton").length) { $(".continuebutton").css("display","none"); $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div>").insertBefore($("div.quizattempt")); } else { $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div><div style='text-align:center;position:relative;top:8px;'>OR</div>").insertBefore($("div.quizattempt")); } }; if (window.location.href.indexOf("https://theURLofyourMoodleSite/mod/assign/view.php") > -1) { $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div><div style='text-align:center;position:relative;top:8px;'>OR</div>").insertBefore($("div.submissionaction")); }; }) function backtotheCourse() { var x = $("ol.breadcrumb li:eq(-2) > a").attr("href"); window.location.replace(x); } </script>
Hi
using version 3.5.
Is there any report that can be run to show outstanding assignments across all courses that have not yet been graded/awaiting grading?
Many Thanks
I am running art assignments which are very file (data) heavy and require students to submit lots of images and possibly short video clips.
Are there any automatic compression file plug ins?
Does anyone else run similar assignments?
I am struggling with making it all come together in a coherent way. At the moment they have to store all their folders / data off site (ie Google Drive) Then come back into moodle and tell me it is ready for marking. Then I have to somehow feedback to them, comment on their assignment submissions which may or may not pass at that point then when the assignment is 'ready to pass' I have to manually grade it so that I have some decent overview of each students progress and then to top it all an external moderator needs 'simple access' (ie one link) which sums up the entire process, stages, evidence and grading dialogue.
Any wild ideas or inventive suggestions as to how best approach this would be very much appreciated.
Many thanks
Well, the simple HTML code for creating a button with a link is below:
<form action="url">
<input type="submit" value="link_name" />
</form>
If there are CSS is allowed, then you can simply use the <a></a> tag to create the link<a href="https://google.com" class="button">Go to Google</a>
css - a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
}
In our education site Penmypaper as CSS is there, so we just use the "a" tag for creating links.
I want to free some disk space by deleting submitted assignments. I have two questions:
1. If a teacher removes (the available option is Remove Submission instead of Delete) all submissions against any assignment, whether students' submissions will be deleted and will it result in freeing disk space (reducing moodledata size)?
2. In case the submissions are removed against an assignment whether or not graded annotated files, feedback and grades against those submissions will also be removed?
Hi! I am receiving email notifications of assignments that closed 2 years ago.
How can I eliminate the sending of these emails?
Hello, if you delete exams it will free up the disk space, but it seems more effective if you Restart the courses that are no longer going to be used