Aori Nevo
Forum Replies Created
-
Forum: Plugins
In reply to: [AN_GradeBook] plugin not workingNot all the jquery libraries were loading. This was fixed in version 1.3.
Forum: Plugins
In reply to: [AN_GradeBook] AN_GradeBook InstallationNot all the jquery libraries were loading. This was fixed in version 1.3.
Forum: Reviews
In reply to: [AN_GradeBook] great support from the authorNot all the jquery libraries were loading. This was fixed in version 1.3.
Forum: Plugins
In reply to: [AN_GradeBook] AN_GradeBook InstallationCan 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.
Forum: Plugins
In reply to: [AN_GradeBook] plugin not workingCan 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.
Forum: Reviews
In reply to: [AN_GradeBook] great support from the authorI 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.
Forum: Plugins
In reply to: [AN_GradeBook] AN_GradeBook InstallationSorry for the late response, but I just saw this now. Is there an add course button?
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.
Forum: Themes and Templates
In reply to: [Theme: Twenty eleven] Textbook Style PagesThe 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;
}
}Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] JQueryI installed the new version and the problem was resolved.
Thank you.