Quiz Creation on a separate Page and How to prepare math quizz

Home Forums Legacy Support Support queries Setup issues Quiz Creation on a separate Page and How to prepare math quizz

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #243180
    ayanfe4favour
    Participant
    I want to sell Quiz. I have installed plugin to sell quiz as directed by the support theme. I have watched the 4mins and 37s video link sent as a guild but it seems there's no enough solution there....   The issues are:  
    1. I want to display only the quiz created. I have created quiz without course, but it is not showing unless I click on "Start Course" or "Star Quiz" at the right side before quiz will display...
      i.e. I want to display Quiz like Course without including Crease, After all, I did not created course, so no course will display.   Is this Petpack plugin I will use to prepare maths question? If yes, how can I use it? This video sent did not display any solution. Refer: https://www.youtube.com/watch?v=5OBd74dBnd4   I have created course and also sent mail. But I am not getting real solution. Friday is far approaching now when you will be going on break... Till now Monday again..   Please, help in solving this problems, weekend is far approaching.  
    #243191
    Diana
    Participant
    dear user, First, I will mention here how to prepare a math quiz solution In this article you will see how to add math equations in jetpack plugin. After installing the plugin, go to settings of jetpack plugin and click here refer: http://prntscr.com/r4rsvw and enable this setting -> http://prntscr.com/r4rtag after that you can check the tutorial. Sharing an example with you This is the code i used: http://prntscr.com/r4rttb result: http://prntscr.com/r4ru1w refer: https://jetpack.com/support/beautiful-math-with-latex/ One more thing I want to mention here, please do not create duplicate topics for the same issue. You can check your created topics by clicking on your profile: http://prntscr.com/r4ruv8 We mention to create a new topic for a new issue but I can see the issues are already asked on other topics of yours. First follow this and then let me know.
    #243285
    ayanfe4favour
    Participant
    I'm sorry for creating multiple topic, it is due to pressure of deadline to meet. Also, Sometimes, the supports team seems to delay, overlook or not providing answers to all issues raised. Issues arising:
    1. I have installed JetPack and did settings: https://prnt.sc/r5012d
    2. I used the code: https://prnt.sc/r4zzgg
    3. Result: https://prnt.sc/r4zyqp..... The code shown as it was written.
    4. Must I use code to prepare all math questions, since not all the users are good in computing?
    5. Can't I do copy and paste for Maths questions with special character and still get result?
    6. How can I create a user just like an Admin, to view works of all instructors at the front-end without going through the back end?
    7. Also, I've not been able to achieve the mission of having quiz on the different page. Kindly guide me well
       
    #243370
    Anshuman Sahu
    Keymaster
    This is the link : https://wplms.io/support/knowledge-base/math-equations-in-wplms/ You need to wrap the equation to [latex]{latex here}[/latex] instead of $latex $   To allow a user to edit all courses please try adding this given code in your wplms-customizer.php file in wplms customizer plugin : add_action('template_redirect',function(){   if(class_exists('WPLMS_Front_End')){     $wf = WPLMS_Front_End::init();     if(1==get_current_user_id()){       remove_action('template_redirect',array($wf,'wplms_front_end_validate_action'));     }   } }); add_filter('wplms_course_instructors',function($ins){   $ins[] = 1;//your user id here   return $ins; });   You can use page builder or elementor's Vibe grid block in order to list all the quizzes on a particular page .    
    #243427
    ayanfe4favour
    Participant

    Thank you. The issue remains little.

    This video does not show me how to wrap or prepare math question. It only shows the question that had been done. I have watched it again and again... Refer: https://wplms.io/support/knowledge-base/math-equations-in-wplms/
    Please, guild me well. I have installed JetPack and did settings: https://prnt.sc/r5012d I used the code: https://prnt.sc/r4zzgg Result: https://prnt.sc/r4zyqp ..... The code shown as it was written. How do wrap the equation to [latex]{latex here}[/latex] ? Must I use code to prepare all math questions, since not all the users are good in computing Can't I do copy and paste for Maths questions with special character and still get result? On creating a special user that would manage all the courses at the front end: Will I replace the exiting code in wplms->customizer.php file in wplms customizer plugin? If I want to add the code, do I need to first paste the code in "IMPORT CODE" column and the import or I should just paste inside "EXPORT CODE" column and then save? Refer: https://prnt.sc/r5j1du How can I create that special user that will manage the whole courses created?
    #243502
    Anshuman Sahu
    Keymaster
    You need to wrap it like this : [latex]i\hbar\frac{\partial}{\partial t}\left|\Psi(t)\right>=H\left|\Psi(t)\right>[/latex]   here is the updated code to allow editing for a particular user : add_action('template_redirect',function(){   if(class_exists('WPLMS_Front_End')){   $wf = WPLMS_Front_End::instance();   if(1==get_current_user_id()){   remove_action('template_redirect',array($wf,'wplms_front_end_validate_action'));   }   }   },1);   add_filter('wplms_course_instructors',function($ins){ if(!is_array($ins)){ $ins = array($ins); } $ins[] = 1;//your user id here   return $ins;   },999999,1);  
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Quiz Creation on a separate Page and How to prepare math quizz’ is closed to new replies.