masteriyo
Forum Replies Created
-
Welcome back. 🙂
To answer this and clarify this, I will have to fist tell how the ‘Learn page’ works.
Whenever you start any course, it opens of a learning page consisting all the lessons and quizzes of that particular course. Now, ‘Learn Page’ under Pages just remains to run this learning page for each course. The content of the ‘Learn Page’ itself is irrelevant and it will not show anywhere. So, you don’t need to edit the content of ‘Learn page’, please keep it as it is without deleting the page.
Now, when you start any course, you are in one of your lessons of that particular course. The video added to the lesson will show at top just below lesson title and the lesson description will show below the video. So, if you are looking to add content for each lesson within the course, lesson description is the thing that you need to add. Please check Add new lesson section in this doc. Also, video is like the main content for any lesson, we show it right at top before the lesson description to highlight it.
Please let me know if this clarifies your query or not. Also, if you have any suggestions on this matter, I would be happy to hear those.
Thanks.
Sanjip S.Hi @evatb,
You are welcome to ask as many questions as you like. All your feedback and queries will only help our LMS plugin be better. 🙂
Yes, currently the quiz attempts is kinda shared between all users when the course is free and open (no registration required). As there is no registration, our LMS plugin does not know who is taking the quiz and on whose account to add the attempts to. Having that said, we will check further on this on what we can do for this case to make this more appropriate.
Yes, currently for the attempts allowed number, you have to add a number and cannot make it as unlimited. This is something we can certainly add in our updates soon, that is, option to remove limitation in the quiz attempts.
Yes, the max. attempts will not be shared between students if registration is mandatory as in this case, the counts will be stored individually and separately for each student.
For now, what I would suggest is:
you can set the limit to like say 100 or 1000, as higher as you need if you don’t want students to register.
However, if you want to make registration compulsory to take the course, you can simply set the quiz attempt limit to 1 and each students will be allowed to take the quiz one time only.Hope this information helps to some extent in your case, we will soon think of making necessary updates in this case.
Thanks.
Sanjip S.We have released a new update v1.0.10. Please update and give it a try. This update should most probably fix the issue. Please let us know.
Thanks.
Sanjip S.Hi @evatb,
Which plugin are you using to translate the Masteriyo to your native language? Maybe we can give a test from our side and fix the issues if necessary.
Thanks.
Sanjip S.Hello @gilbertomtnez,
Yes, that is a nice idea. In our updates soon, we will think of adding an option to change the different texts and button labels in the Masteriyo plugin.
Till then you can try one of the following solutions.
1. Using a child theme. In your child theme’s code, please add the following code in functions.php file./** * Change the add to cart button text. * * @param string $text Add to cart button text. * @return string */ function masteriyo_change_add_to_cart_button_text( $text ) { return 'Enroll Now'; } add_filter( 'masteriyo_add_to_cart_text', 'masteriyo_change_add_to_cart_button_text' );Or
2. You can use the custom CSS (Appearrance->Customize->Additional CSS) and add the following CSS as a quick solution for your case.
/* Change 'Add to cart' text */ .masteriyo-time-btn .masteriyo-course--btn::after{ content: "Enroll Now"; position: absolute; top:0; right:0; visibility:visible; background-color: var(--masteriyo-color-primary); border-color: var(--masteriyo-color-primary); color: var(--masteriyo-color-white); border-radius: 2px; padding: 10px 24px; } .masteriyo-time-btn .masteriyo-course--btn:hover:after{ opacity: 0.9; }We suggest using option 1 if you are using child theme or intend to use one. However, option 2 is also fine to go with.
Hope this helps and thanks for using our plugin. 🙂
Thanks.
Sanjip S.