educatorteam
Forum Replies Created
-
Forum: Plugins
In reply to: [Educator] Email notifications dont workHi,
I’ve just tested the email notifications in Educator 1.6 and the test was successful.
Please check these facts about the email notifications in Educator 1.6:
When a student registers using PayPal or Stripe, the email notification is sent to the course author’s user email and to the student’s email. When a student registers using cash, check, or a bank transfer for payment, the email notification is sent to the student’s email only when a site admin approves the student’s payment in the backend (Educator » Payments screen).
When an admin or a lecturer saves a grade for a quiz in the Educator » Entries » Progress screen only the student receives an email notification.
When a student’s membership expires, only the student receives an email notification.
Please check some of these recommendations in order to troubleshoot the issue with email configuration on your server:
- Please try to check if the email works at all on your WordPress website. You could try to use the WordPress’ core password reset feature (/wp-login.php?action=lostpassword) and check if you receive an email from this feature.
- Please go to the Settings » General screen and check if the “E-mail Address” option is correct.
- Please go to the Educator » Settings » Email screen and check the “From Name” and the “From Email” options.
- Please check your spam folder, sometimes email notifications can end up in there.
- Please verify with your hosting provider that the email feature works properly on your server.
Forum: Plugins
In reply to: [Educator Certificates] How to create the certificate templateHi,
Please check this article: http://educatorplugin.com/educator-certificates/
Forum: Plugins
In reply to: [Educator] Change quiz and Tax ClassHi,
I’ve googled a little and found a few possible causes:
1) Please check the file permissions of the wp-admin/admin-ajax.php (usually, it’s 644)
2) Please check if there is an .htaccess file that denies access to the wp-admin/admin-ajax.phpForum: Plugins
In reply to: [Educator] Change quiz and Tax ClassHi, thanks for providing the steps to reproduce. I’ve tested the described problem on multiple browsers (Chrome, Firefox, IE9,10) and could not reproduce the issues. I’ve used WordPress 4.3.1 and Educator plugin 1.6 to test.
Could I kindly ask you to provide the following information?
– The browser name and the version number
– The WordPress version
– The Educator plugin version
– The OS
– If possible: php versionAlso, could you please do the following:
Open the developer tools in Chrome and switch to the “Console” tab, reload the page. Try adding, updating, and removing the tax rates. Please check if something is getting displayed in the console (e.g., errors or some messages).
Forum: Plugins
In reply to: [Educator] Postback payment methodMay I kindly ask you to provide more details as to what you’d like to accomplish? Currently, the plugin’s payment methods process replies from Paypal (IPN) and Stripe automatically. The payment status is automatically updated based on whether the payment was processed successfully or not.
Forum: Plugins
In reply to: [Educator] Postback payment methodHi,
You should be able to process Paypal postback using the following action hook:
function my_process_edr_paypal_ipn() { // do something. } add_action( 'ib_educator_request_paypalipn', 'my_process_edr_paypal_ipn' );For the stripe payment method:
function my_process_edr_stripe_token() { // do something. } add_action( 'ib_educator_request_stripe_token', 'my_process_edr_stripe_token' );Forum: Plugins
In reply to: [Educator] Change quiz and Tax ClassHi,
I’ve just checked the tax classes and quizzes and was able to change them. Could you please describe your issue in detail? Could you please mention the steps to reproduce this issue?
Forum: Plugins
In reply to: [Educator] Add forum and send in videoQuestion 1:
You could try using BuddyPress (https://buddypress.org/) for the forums.
Question 2:
Students can submit a link to youtube video in quizzes. You’ll need to create a “written answer” question for this.
Forum: Plugins
In reply to: [Educator] Translate front endHi,
In order to translate a plugin you need to use a translation software that will let you edit a .PO (or .POT) file and create a .MO file from it. One of the most widely used programs to accomplish this is Poedit.
In Educator, you should open the wp-content/plugins/ibeducator/languages/ibeducator.pot file and create the .MO file after entering your translations. You should save your .MO file as ibeducator-[language_code]_[COUNTRY_CODE].mo (examples: ibeducator-en_US.mo, ibeducator-de_DE.mo, etc). Once you get this file, you can paste it into the wp-content/languages/plugins directory (example: wp-content/languages/plugins/ibeducator-en_US.mo). Some notes about Poedit.
Also, you can use a WordPress plugin to create translations. For example, Loco Translate.
Forum: Plugins
In reply to: [Educator] Adobe CaptivateHi, at this moment Educator doesn’t have a specific feature to embed adobe captivate content. Probably, this can be done using an additional plugin.
Forum: Plugins
In reply to: [Educator] Customize categories pageHi,
You can create the following file in the root of your primary theme or child theme:
taxonomy-ib_educator_category.php
A very basic version of this file looks like this:
<?php get_header(); ?> <?php while ( have_posts() ) : the_post(); get_template_part( 'content', 'course' ); endwhile; the_posts_pagination( array( 'mid_size' => 2 ) ); ?> <?php get_footer(); ?>You will need to modify this file such that it uses your theme’s HTML structure.
Forum: Plugins
In reply to: [Educator] Invalid Username redirectHi, this plugin doesn’t provide a custom login feature by default. Once a student registers for a course he/she has to login using a login page provided by one of the following:
- Default WP login (/wp-login.php)
- A login page that is provided by an external plugin
- A login page that is provided by your theme
In case of the options 2 or 3, you need to contact either your external plugin’s or your theme’s support (e.g., on the website you downloaded/bought your theme or external plugin).
Forum: Plugins
In reply to: [Educator] Courses Page & Lessons distort the Themes at allIf you created the ibeducator folder in your theme’s directory, I recommend to store there only those templates that you actually need to edit. That’s because when a plugin has an update there is a big chance that some of its templates are modified. If you will have all the plugin’s templates stored in your theme’s directory the plugin won’t pick up the updated versions of the templates (that it stores in its own templates folder), and this may cause some new/fixed changes not to be displayed. Therefore, you should copy and override only those templates that you really need to override.
Don’t hesitate to ask more questions on this support forum. And thanks for considering this plugin.
Forum: Plugins
In reply to: [Educator] Courses Page & Lessons distort the Themes at allHi,
This article should have been more informative. I’ve just modified it to include more details.
There are four templates that support the WordPress’ custom post type core output. The courses and lessons are custom post types, so Educator uses WordPress core features to output these post types (e.g., archives and single templates). These custom post type templates should be copied from the plugins/ibeducator/templates to your theme directory’s root. Below is the list of such templates:
1) Courses Archive Template (archive-ib_educator_course.php)
2) A Single Course Template (single-ib_educator_course.php)
3) Lessons Archive Template (archive-ib_educator_lesson.php)
4) A Single Lesson Template (single-ib_educator_lesson.php)The above templates should be copied to the theme’s root (for example, wp-content/themes/my-theme/archive-ib_educator_course.php). The other templates should remain in the ibeducator directory (e.g., wp-content/themes/my-theme/ibeducator/shortcode-user-payments.php).
Regarding the archive and single templates (e.g, courses, lessons):
– These templates should contain the full layout, including the get_header and get_footer function calls.
– You need to copy the WP loop part of these templates (the<?php while ( have_posts() ) : the_post(); ?> ... <?php endwhile; ?>) to the right place inside your theme’s html structure. For example, the simplest template for the courses archive (archive-ib_educator_course.php) may look like this:<?php if ( ! defined( 'ABSPATH' ) ) exit; ?> <?php get_header( 'ibeducator' ); ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'course' ); ?> <?php endwhile; ?> <?php get_footer( 'ibeducator' ); ?>The HTML structure of this template depends on your theme’s HTML structure. You can check your theme’s index.php template to find out what HTML code your theme uses.
Forum: Plugins
In reply to: [Educator] Allow student to register after guidance counselor approval?I think you can either have that page display all course requests that need approval (e.g., course name – student name) or there can be 2 pages to manage this feature (students list page and the student’s courses page).
I can’t say if you will need more hooks while developing this. If you will have some questions you can post them here.