Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created October 4, 2021 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrVibe/0bf0beede13c0bc4649cff7c7e053c02 to your computer and use it in GitHub Desktop.
Save MrVibe/0bf0beede13c0bc4649cff7c7e053c02 to your computer and use it in GitHub Desktop.
Show quiz stats in single quiz page
add_action('wplms_front_end_quiz_end',function($quiz_id){
?>
<div class="container">
<ul class="data_stats" style="position:relative" data-id="<?php echo $quiz_id; ?>" data-type="quiz">
<li><a id="download_Stats" class="button full">View quiz stats</a></li>
</ul>
<div class="main_content">
</div>
</div>
<script>
var cptchatjs='<?php echo plugins_url().'wplms_plugin/includes/vibe-course-module/includes/js/Chart.min.js'; ?>';
</script>
<?php
wp_nonce_field('stats_security','stats_security');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment