Forum Replies Created

Viewing 10 replies - 151 through 160 (of 160 total)
  • Plugin Author Aori Nevo

    (@anevo)

    Not all the jquery libraries were loading. This was fixed in version 1.3.

    Plugin Author Aori Nevo

    (@anevo)

    Not all the jquery libraries were loading. This was fixed in version 1.3.

    Plugin Author Aori Nevo

    (@anevo)

    Not all the jquery libraries were loading. This was fixed in version 1.3.

    Plugin Author Aori Nevo

    (@anevo)

    Can you take a screen shot and email it to me? Also, can you do this in firefox while running the firebug plugin. That way I can see what sort of errors you are getting.

    Feel free to contact me directly, here.

    Also, you need to add a course first. After clicking the add course button, a module should pop-up asking for information about the course like name, etc… Once the course is added, click on it so that it becomes highlighted in orange. Then you can start adding students.

    Please let me know if this works.

    Plugin Author Aori Nevo

    (@anevo)

    Can you take a screen shot and email it to me? Also, can you do this in firefox while running the firebug plugin. That way I can see what sort of errors you are getting.

    Feel free to contact me directly, here.

    Also, you need to add a course first. After clicking the add course button, a module should pop-up asking for information about the course like name, etc… Once the course is added, click on it so that it becomes highlighted in orange. Then you can start adding students.

    Please let me know if this works.

    Plugin Author Aori Nevo

    (@anevo)

    I just reinstalled the plugin and it’s working fine. I’m running wordpress 3.7.

    Can you take a screen shot and email it to me? Also, can you do this in firefox while running firebug. That way I can see what sort of errors you are getting.

    Feel free to contact me directly, here.

    Also, you need to add a course first. After clicking the add course button, a module should pop-up asking for information about the course like name, etc… Once the course is added, click on it so that it becomes highlighted orange. Then you can start adding students.

    Please let me know if this works.

    Plugin Author Aori Nevo

    (@anevo)

    Sorry for the late response, but I just saw this now. Is there an add course button?

    Thread Starter Aori Nevo

    (@anevo)

    The following work-around requires that you edit the twenty-eleven theme file content-page.php. Add

    <?php global $post;
    	$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0&depth=1');
    	if ($children) {
    		echo '<ul>'.  $children . '</ul><hr/>';
    	}  else {
    		echo '<ul>'.  $children . wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0&depth=1&exclude=".$post->ID) . '</ul><hr/>';
    	}
    ?>

    after the line

    <div class="entry-content">

    This solution is not ideal, as changes will be overwritten whenever you upgrade your theme.

    Thread Starter Aori Nevo

    (@anevo)

    The above problem can be solved using css. Below is the css code I added to the style.css file of the twenty-eleven theme. An example of what this looks like with a little extra css to style theorems, examples, etc… click here

    .entry-content {
    padding: 0!important;
    }

    /* Singular */
    .singular .entry-header,
    .singular .entry-content,
    .singular footer.entry-meta,
    .singular #comments-title {
    margin: 0 auto;
    width: 100%;
    }

    /* Textbook */

    .textbook {
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 250px;
    padding-left: 3px;
    }

    .textbook-left {
    padding-right: 5px;
    margin-left: -250px;
    float: left;
    }

    /* =Responsive Structure
    ———————————————– */
    @media (max-width: 800px) {
    .textbook-left {
    float: none;
    margin-left: 0;
    }
    }

    @media (max-width: 650px) {
    .textbook-left {
    float: none;
    margin-left: 0;
    }
    }

    @media (max-width: 450px) {
    .textbook-left {
    float: none;
    margin-left: 0;
    }
    }

    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .textbook-left {
    float: none;
    margin-left: 0;
    }
    }

    Thread Starter Aori Nevo

    (@anevo)

    I installed the new version and the problem was resolved.

    Thank you.

Viewing 10 replies - 151 through 160 (of 160 total)