Created
October 4, 2021 07:03
-
-
Save MrVibe/0bf0beede13c0bc4649cff7c7e053c02 to your computer and use it in GitHub Desktop.
Show quiz stats in single quiz page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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