educatorteam
Forum Replies Created
-
Forum: Plugins
In reply to: [Educator] Allow for multiple items of same course?Then you might be interested in the Educator WooCommerce Integration plugin: https://wordpress.org/plugins/educator-woocommerce-integration/
Please check the usage documentation here: http://educatorplugin.com/using-woocommerce-to-sell-courses/
Forum: Plugins
In reply to: [Educator] Courses Page & Lessons distort the Themes at allHi,
You need to theme this plugin a little to adapt it to the theme.
I’ve been working on an article about theming Educator. Currently it’s in draft. But I will publish a link in here:
Forum: Plugins
In reply to: [Educator] Allow for multiple items of same course?Do you want to allow selecting multiple courses per purchase (e.g., a shopping cart functionality)?
Forum: Plugins
In reply to: [Educator] Allow student to register after guidance counselor approval?Hi,
As far as I understood this question, you’ll need an enhancement from the developer.
One of the ways to accomplish this is to:
– Disable payment/registration for the courses where the “guidance counselor approval” options is set.
– If a course is approved by a counselor for a particular student, allow to register.
– You will also need a back-end page where you’ll be able to approve courses for various students.To check whether the student is allowed to take a course (statement #1 from above), it should be possible to use the:
“ib_educator_access_status” filter hook and/or
“ib_educator_before_payment” action hookIf the “ib_educator_access_status” filter returns “forbidden”, a student shouldn’t be able to register/pay.
Filter reference:
/**
* Filters the value returned by the IB_Educator::get_access_status method.
*
* @param string $status Access status that was computed by the plugin.
* @param int $course_id
* @param int $user_id
*/
return apply_filters( ‘ib_educator_access_status’, $status, $course_id, $user_id );/**
* Fired right before the submitted course payment/registration form is processed.
*/
do_action( ‘ib_educator_before_payment’ );Forum: Plugins
In reply to: [Educator] Can students re-take quizzes?Hi,
I’ve already started planning the next version and hope to release it this month. I’m still considering features and most probably, retaking quizzes feature will be included, because it is important.
Also, you can have a look at the pending issues for Educator on its github issues page: https://github.com/educatorplugin/ibeducator/issues These issues should be released in one of the next versions.
Thanks for using Educator 🙂
Forum: Plugins
In reply to: [Educator] Can students re-take quizzes?Hi,
I apologise for replying late. At this time there is no option to allow retaking quizzes. I’ve added an issue to github repository and this feature will be implemented quite soon, in one of the nearest versions of the plugin.
Forum: Plugins
In reply to: [Educator] courses blank pageHi. This probably happens because some custom work should be done to integrate the plugin into the theme. There are a few ways to integrate Educator with a theme:
1) Copy and modify specific templates from the plugins/ibeducator/templates directory into your theme’s ibeducator/ directory.
2) Use a number of template hooks to add required pieces of HTML to match the layout of the theme. This method, will be covered more detailed after the next plugin update.
Forum: Plugins
In reply to: [Educator] How to show list of courses categoriesHi,
You can use the “Custom Menu” widget to list categories.
Example:
1) Go to Appearance > Menus and create a menu.
2) Click “Screen Options” button in the top right part of the screen check the “Course Categories” checkbox.
3) Check the course categories from the “Course Categories” list on the left and add them to the menu.
4) Click “Save Menu”
5) Go to Appearance > Widgets and add the “Custom Menu” widget.
6) Select your course categories menu in the widget’s settings.