Dmytro
Forum Replies Created
-
Forum: Plugins
In reply to: [Educator] Price for membership level not updatedHi. The user has to register to be able to purchase an online course. However, probably, you could use WooCommerce to sell some onsite courses by creating a product for such courses.
Similar feature is currently in the backlog (offering on-site courses) and I cannot estimate when it can be developed.
Forum: Plugins
In reply to: [Educator] Price for membership level not updatedHi,
If you already assigned a WooCommerce product to a memebership level, the price depends on the assigned product now. To change the price, you need to go to Products > Products > edit your the assigned product > and set the “Regular Price”. The price of the membership level should be updated automatically when you update the product.
Regarding sharing grades/scores on Facebook, this feature is not available in Educator. It has to be created. You might probably need to hire someone to do it.
Forum: Plugins
In reply to: [Educator] Change "Memberships" to "Enrollments"Hi,
Please try changing it using WP’s translations API (po/mo files, you can use it to change english words/phrases too). The plugin’s translation file (POT) is located in wp-content/plugins/ibeducator/languages/ibeducator.pot
Please google “translating wordpress plugins” to find out more info about translating WP.
When you get your MO file (e.g., ibeducator-en_US.mo), you can put it in the wp-content/languages/plugins/ibeducator-en_US.mo
Forum: Plugins
In reply to: [Educator] Does it support Drip ContentHi, this feature is unavailable.
Forum: Plugins
In reply to: [Educator] how to finish new course?Hi, thanks for your feedback.
At the moment, a course can be marked complete if a lecturer or admin changes the student’s course entry’s status from “In progress” to “Complete”. He/she can do this in Educator > Entries > Edit entry.
Forum: Plugins
In reply to: [Educator] How to add external payment method?Please check the following documentation article:
Create Custom Payment Gateway For EducatorForum: Plugins
In reply to: [Educator] Written answer form ?Hi, thanks. The quiz appears to logged in students who are taking the course. The student should have an entry with status “inprogress” (please check in Educator > Entries).
Forum: Plugins
In reply to: [Educator] How to add external payment method?Working on improving the payment gateways API to make it easier to integrate additional payment gateways and will write an article about this soon.
Forum: Plugins
In reply to: [Educator] How to add external payment method?Hi, I will write an article about adding additional payment gateway soon.
Forum: Plugins
In reply to: [Educator] false message regarding student registrationHi, thanks for your message. I couldn’t reproduce this issue. I’ve tried to purchase a course with the above username and email and the issue didn’t appear. This happens when you try to purchase a course, right? On the /payment/edu-course/[course-id]/ URI?
Forum: Plugins
In reply to: [Educator] courses blank pageThat’s great. The link may look like:
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>Or:
<p><a href="<?php the_permalink(); ?>"><?php _e( 'Read More', 'your-textdomain' ); ?></a></p>Forum: Plugins
In reply to: [Educator] courses blank pagePlease copy the file archive-ib_educator_course.php to your theme directory, better to the child theme’s directory to simplify the updates process.
First, try to remove the get_post_format(), so that line looks like:
<?php get_template_part( ‘content’ ); ?>If that doesn’t work, replace that line by:
<?php get_template_part( ‘content’, ‘course’ ); ?>
and create the file content-course.php in your child theme’s directory. The simplest version of that file may look like this:
<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<h2><?php the_title(); ?></h2>
<div class=”price”><?php echo ib_edu_format_course_price( ib_edu_get_course_price( get_the_ID() ) ); ?></div>
<?php the_content(); ?>
</article>Forum: Plugins
In reply to: [Educator] courses blank pageHi, thanks for the feedback. Just checked the Educator 1.2. The courses show up on WordPress 4.1 (the /courses/ page). Please try to go to Settings > Permalinks and click “Save Changes”.
If this doesn’t help, please check your server’s error log; it will tell exactly what is wrong on that page. The error may also be caused by some conflict, which is less probable.
Forum: Plugins
In reply to: [Educator] How To?If the page with this slug exists, please change the slug to something similar, and go to Settings > Permalinks, Save Changes.
Forum: Plugins
In reply to: [Educator] How To?Hi, do you try to access the courses page by going to /courses/ URI? If so, please make sure there is no page created with “courses” slug, as the plugin reserves this slug for the “Course” custom post type.