Hi,
The extra button seems to be added by an event:
function(e) {
if (qmn_ajax_object.enable_quick_result_mc == 1) {
var question_id = jQuery(this).attr(‘name’).split(‘question’)[1],
value = jQuery(this).val(),
$this = jQuery(this).parents(‘.quiz_section’);
jQuery.ajax({
type: ‘POST’,
url: qmn_ajax_object.ajaxurl,
data: {
action: “qsm_get_question_quick_result”,
question_id: question_id,
answer: value,
},
success: function(response) {
$this.find(‘.quick-question-res-p’).remove();
if (response == ‘correct’) {
$this.append(‘<p style=”color: green” class=”quick-question-res-p”><b>Correct!</b> You have selected correct answer.</p>’)
} else if (response == ‘incorrect’) {
$this.append(‘<p style=”color: red” class=”quick-question-res-p”><b>Wrong!</b> You have selected wrong answer.</p>’)
}
},
error: function(errorThrown) {
alert(errorThrown);
}
});
}
}