Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: answer.php
<?php /** * Admin question editor: question answer template. * * @since 3.0.0 */ learn_press_admin_view( 'question/option' ); ?> <script type="text/x-template" id="tmpl-lp-question-answer"> <div class="lp-box-data-content"> <table class="lp-list-options list-question-answers"> <thead> <tr> <th class="sort"></th> <th class="answer-text"><?php esc_html_e( 'Answers', 'learnpress' ); ?></th> <th class="answer-correct"><?php esc_html_e( 'Correction', 'learnpress' ); ?></th> <th class="actions"></th> </tr> </thead> <tbody> <lp-question-answer-option v-for="(answer, index) in answers" :key="index" :index="index" :type="type" :radio="radio" :number="number" :answer="answer" @updateTitle="updateTitle" @changeCorrect="changeCorrect" @deleteAnswer="deleteAnswer"></lp-question-answer-option> </tbody> </table> <p class="add-answer" v-if="addable"> <button class="button add-question-option-button" type="button" @click="newAnswer"><?php esc_html_e( 'Add a new Answer', 'learnpress' ); ?></button> </p> </div> </script> <script type="text/javascript"> jQuery( function( $ ) { var $store = window.LP_Question_Store; window.$Vue = window.$Vue || Vue; $Vue.component('lp-question-answer', { template: '#tmpl-lp-question-answer', props: ['type', 'answers'], computed: { // check type radio answer type radio: function() { return this.type === 'true_or_false' || this.type === 'single_choice'; }, // number answer number: function() { return this.answers.length; }, // addable new answer addable: function() { return this.type !== 'true_or_false'; }, // question status status: function() { return $store.getters['status']; }, // get draft status draft: function() { return $store.getters['autoDraft']; } }, created: function() { var _self = this; setTimeout( function() { var $el = $('.list-question-answers tbody'); $el.sortable({ handle: '.sort', axis: 'y', helper: function(e, ui) { var $tr = $('<tr />'), $row = $(e.target).closest('tr'); $row.children().each( function() { var $td = $(this).clone().width( $(this).width() ) $tr.append($td); }); return $tr; }, start: function() { }, update: function() { _self.sort(); } }); }, 1000); }, methods: { // sort answer options sort: function() { var _items = $('.list-question-answers tbody>tr.answer-option'); var _order = []; _items.each( function( index, item ) { $(item).find('.order').text( (index + 1) + '.'); _order.push( $(item).data('answer-id') ); }); $store.dispatch('updateAnswersOrder', _order); }, // change answer title updateTitle: function(answer) { //if (!this.draft) { // update title $store.dispatch('updateAnswerTitle', answer); //} }, // change correct answer changeCorrect: function(correct) { if (!this.draft) { $store.dispatch('updateCorrectAnswer', correct); } }, // delete answer deleteAnswer: function(answer) { $store.dispatch('deleteAnswer', answer); }, // new answer option newAnswer: function() { // new answer $store.dispatch('newAnswer', { answer: { value: '', title: '' } }); } } }) }); </script>