Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter Sgracia

    (@sgracia)

    this line is the problem of archive-ib_educator_course.php

    <?php get_template_part( ‘content’, get_post_format() ); ?>

    it’s loop correctly but nothing ^^

    Hi, 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.

    Thread Starter Sgracia

    (@sgracia)

    i find the problem

    i install a new wordpress website, courses works

    I install Avada Themes 3.7 courses doesn’t work

    Maybe conflict with words maybe ‘content’
    this line is the problem
    <?php get_template_part( ‘content’, get_post_format() ); ?>

    how can we fix this ? contentEductor or something like this ?

    Please 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>

    Thread Starter Sgracia

    (@sgracia)

    works ^^ need just the link to the course

    That’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>

    I have tried all this and the courses page still just says Course , but nothing else.

    If try the shortcode [course_list]

    The page shows the shortcode [course_list]

    If I put in the shortcode [ibedu_student_courses] I get the message that I am not registered for any courses , so I think the formatting is correct

    If I open a course from the backend it says I am not registered for the course, if I try to register, I get a 403 error

    I have to point out, I have been testing other LMS systems on this site, so it wouldn’t be too far of a leap that I have some sort of conflict

    Ok, I figured out a part of it

    I wasn’t planning on charging for the classes so I didn’t bother with setting up the gateway, That was the reason couldn’t register. So now all that is working , however I still cant get the courses to show up

    I getting similar problem, but instead of blank page I got a search bar and an awful spam of a list of my pages, archives and categories of all my site.

    Should I try same solution? or do you patch that problem in actual version? I’m not sure if I understand the solution process.

    Please Help

    Plugin Author educatorteam

    (@educatorteam)

    Hi. 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.

    I have also experienced the issue of a blank ‘Courses’ page.

    I have WP 4.3, Educator 1.5, WooCommerce 2.4.6, Educator WooCommerce Integration 1.0, Genesis 2.1.3 and the child theme Agency 2.0

    I was able to use the solution above from
    https://www.ads-software.com/support/topic/courses-blank-page?replies=11#post-6362564
    and from
    https://www.ads-software.com/support/topic/courses-blank-page?replies=11#post-6363623

    Thanks

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘courses blank page’ is closed to new replies.