MountainLeprechaun Posted September 18, 2023 Share Posted September 18, 2023 I'm building a Training Program website with multiple courses in Squarespace. We'd like to be able to have Knowledge Check Quizzes after each chapter before users can move on to the next one. Does Squarespace plan on adding this feature anytime soon? It's a typical Learning Management System feature that all of the competition uses. If not, how do I accomplish this with a third-party system or code? Any recommendations? JasonHaywood, LOUDarmy, CB3 and 3 others 3 3 Link to comment
Pally Posted December 29, 2023 Share Posted December 29, 2023 wondering the same... Kayli 1 Link to comment
LOUDarmy Posted February 25 Share Posted February 25 Also looking for this feature? Kayli 1 Link to comment
BcjDesign Posted March 19 Share Posted March 19 Have you maybe received some information? I'm also wondering about this. It's weird it isn't already a part of this. Third party widgets are bleeding me dry. Link to comment
Kayli Posted June 6 Share Posted June 6 Yes, this is an important feature. Also, to be able to drip content to an individual based on quiz completion. Link to comment
Morrisson Posted July 15 Share Posted July 15 I added a "code" block and used this simple HTML code to add quizzes to my pages: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Quizlet</title> <style> body { font-family: Arial, sans-serif; } .quiz-container { max-width: 600px; margin: 0 auto; padding: 20px; border: 1px solid #ddd; border-radius: 5px; } .question { font-size: 1.2em; margin-bottom: 20px; } .answer { display: flex; align-items: center; margin-bottom: 10px; cursor: pointer; } .answer input[type="radio"] { margin-right: 10px; } .correct { display: none; margin-left: 10px; color: green; font-weight: bold; } </style> </head> <body> <div class="quiz-container"> <div class="question">What is a chord in music?</div> <div class="answer"> <input type="radio" name="answer" value="wrong" id="answer1"> <label for="answer1">A single musical note played repeatedly</label> <span class="correct" id="correct1">✔</span> </div> <div class="answer"> <input type="radio" name="answer" value="wrong" id="answer2"> <label for="answer2">Two musical notes played one after the other</label> <span class="correct" id="correct2">✔</span> </div> <div class="answer"> <input type="radio" name="answer" value="correct" id="answer3"> <label for="answer3">A combination of three or more different musical notes played simultaneously</label> <span class="correct" id="correct3">✔</span> </div> </div> <script> document.querySelectorAll('input[type="radio"]').forEach(radio => { radio.addEventListener('change', function() { if (this.value === 'correct') { document.getElementById('correct3').style.display = 'inline'; } else { document.getElementById('correct3').style.display = 'none'; } }); }); </script> </body> </html> JasonHaywood 1 Link to comment
taylorlaidlaw Posted September 16 Share Posted September 16 Any update on this? Seems like it's a very important feature for courses! Link to comment
Apogee_John Posted September 19 Share Posted September 19 Anything on knowledge quizzes/assessments for courses? anyon have a work-around? Use Typeform or Mailchimp maybe? Link to comment
ParadimEd Posted October 10 Share Posted October 10 I am also wondering the same. Would really like to not have to include a third party link. Link to comment
Tohssy Posted October 19 Share Posted October 19 Insane that this hasn't been addressed yet. SQUARESPACE team, can you provide any updates? Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment