Forum Replies Created

Viewing 15 replies - 151 through 165 (of 227 total)
  • Thread Starter TomJohnson

    (@tomjohnson)

    Yosemite,

    Are you saying that I posted too many questions to the forum and did not select the Resolved option in the drop-down box enough?

    Tom

    Thread Starter TomJohnson

    (@tomjohnson)

    HandySolo, thanks! That did the trick. I guess the use_desc_for_title parameter is by default on in my theme, so the parameter wasn’t in my wp_list_cats tag. However, when I included in there and set it as off, the rollover alt text went away.

    Forum: Plugins
    In reply to: Shop Plugin for WP 2.0.3
    TomJohnson

    (@tomjohnson)

    As I mentioned earlier, I couldn’t use WordPress to build my shopping cart site, so I ended up using yahoo merchant instead. You can see the fishing flickerbait site at http://www.greattackle.com or http://www.flickerbait.com. It’s pretty much finished — you can see how the shopping cart integrates seamlessly. I don’t think that integration is possible with WordPress right now, and that poses a huge challenge for WordPress (if it wants to double as site-building/content management software). Sitebuilder’s shopping cart interface is extremely easy and convenient to use. On the other hand, WordPress offers the ability to post in such a timely, easy fashion. I just wish a good shopping cart plugin were created for WordPress. The inability to integrate a seamless shopping cart into a WordPress site has been a huge letdown for me in terms of my wordpress enthusiasm. Oh well.

    Tom

    Thread Starter TomJohnson

    (@tomjohnson)

    Thanks. So you’re saying there are no plugins that add this functionality to the WYSIWYG editor?

    Forum: Plugins
    In reply to: Shop Plugin for WP 2.0.3
    TomJohnson

    (@tomjohnson)

    I briefly explored the instinct plugin, but it didn’t seem robust enough to offer everything I needed. Plus I thought it looked to amateur (at least how I would integrate it), and didn’t instill trust for me to enter my credit card info.

    I gave up on the wordpress shopping cart plugins and tried looking for alternatives to use, such as one of the other 500 paypal compatible shopping carts out there, but finding a shopping cart that blends in with wordpress so that it all looks like the same site is really difficult.

    I thought I could use the ezstatic plugin to pull in some pages created from a yahoo hosted merchant account shopping cart page — no luck there. The yahoo merchant account pages use XML code that won’t display with the ezstatic plugin.

    I was hoping to create a wordpress site that integrated a shopping cart. Now it looks like I’ll be creating a yahoo merchant shopping cart site that has a link to a blog. oh well.

    (by the way, i’m only using the yahoo thing b/c the person for whom i’m building the site already had an account there — i personally think the yahoo service is pretty confusing and nonintuitive. luckily there’s a help manual, but does it really need to be 384 pages only? geez. still, after several hrs of plugging through it, i can see that it’s use of xml is pretty ingenious and may prove easy once i get used to the system.)

    Forum: Plugins
    In reply to: paragraph numbering plugin?
    Thread Starter TomJohnson

    (@tomjohnson)

    I have a different table of contents plugin on my site: http://fucoder.com/code/toc-generator/

    I’ve found it to work well. Just wish it had a TOC heading at the top.

    Forum: Plugins
    In reply to: Shop Plugin for WP 2.0.3

    I was just looking for the same thing myself. The only shopping cart plugin I found is here: http://www.instinct.co.nz/?p=16

    I haven’t tried it. If you try it and it works, will you let me know? The installation looks a little involved to just upload on a whim (obviously, it’s a shopping cart).

    Thread Starter TomJohnson

    (@tomjohnson)

    That’s okay. I don’t see that big of a need for it. It’s easier just to create two blog sites for this situation. Thanks Moshu.

    Thread Starter TomJohnson

    (@tomjohnson)

    fatalcure, i changed the guest login to the site. if you want me to send you the login info so you can view it, just send me a request from this page: http://stc-suncoast.org/contact-us/

    Thread Starter TomJohnson

    (@tomjohnson)

    So far no student has complained about this method. I just publish an Excel spreadsheet and list students by ID numbers. As someone suggested previously, I completed deleted the column that lists student names next to their ID numbers. I found that even if I hid a cell and then locked and published it, I could easily copy the text, paste it into a new Excel file, and see the hidden cell.

    Thread Starter TomJohnson

    (@tomjohnson)

    I created an excel spreadsheet that lists grades by a student ID number, which no one knows but the student. I will get some feedback today as to whether this method is acceptable by students or not.

    Thread Starter TomJohnson

    (@tomjohnson)

    When I was setting up my course, I looked at a few courses where each student had his or her own blog site (I think http://edublogs.org/ lets you have as many blogs as you want). While this could be advantageous in some courses, it seemed to me that students didn’t interact much with other students writing because to do so, they had to totally go into another site. Some sites were pretty vacant, giving the student’s domain an empty, unvisited feel.

    That’s why I brought all students into the same blog site. I have to admit, though, that I wanted to play around with WordPress MU, but I had trouble installing it. Do you know where any good instructions for that are? I have cPanel, so I’ve always used the one-click install Fantastico feature.

    Back to the class blog. With grades and comments, I see your point with the moderated level being automatically private. However, I actually <i>want </i>students to read my comments (just not the grades). As a teacher, I’ve seen a lot of peer reviews, and I can count on my hand the number of peer reviews that were actually worthwhile. I’m not saying my comments are brilliant, but they are more substantial than the average student’s peer comment. I want students to learn by example how to comment, how to analyze, etc. The more students can read my comments, and comment on my comments and other students comments, then the more interactivity and student writing community I can build.

    Also, knowing that every student can read my comments keeps me in check. I have to make sure I’m being fair.

    Thread Starter TomJohnson

    (@tomjohnson)

    Manstraw, if you could develop that grading plugin as you described, it would be perfect. I’m telling you, give WordPress one year and some super-techie teacher will put together a customized theme that puts both WebCT and Blackboard out of business. Particularly for writing classes, where peer reviews and commenting is frequent, WordPress really excels.

    Did you already see my site? Email me if you want access, b/c it’s password protected. You asked how I’m managing assignments. Basically I made each assignment its own category, and then I have students select the category their assignment belongs to. Some students forgot to select it, so I decided to just set the default category to the assignment they’re supposed to turn in.

    Something that has proven to be invaluable is a little piece of code that allows the category description to automatically display above the category post.

    <?php if ( is_category() ) : ?>
    <h2 id=”category-name-header”>
    <?php echo $cache_categories[$cat]->cat_name ?></h2>
    <?php add_filter(‘category_description’, ‘wpautop’); ?>
    <?php add_filter(‘category_description’, ‘wptexturize’); ?>
    <div id=”category-description”>
    <?php echo category_description(); ?>
    </div>
    <?php endif; ?>

    I put the above right before the loop in my archives.php page.

    If I need to change the assignment, I just change the description in the admin menu (manage > categories), rather than going into a custom page template and changing it. Very helpful.

    Another helpful thing that I wished I’d looked at more is integrating the Ocacia Bar (Admin menu) at the top of the site. I realized in aftermath that my theme didn’t really accomodate it, so I’ll have to change that at some point. It makes it much simpler for students.

    Forum: Fixing WordPress
    In reply to: integrating PayPal
    Thread Starter TomJohnson

    (@tomjohnson)

    Moshu, thanks for the link. I guess I just got lazy with searching. I see that his plugin is still in development. Thanks again for your help.

    Thread Starter TomJohnson

    (@tomjohnson)

    Actually, while a private comment plugin would be nice, in the larger scheme of grades it does not work so well. Reason being, as an instructor, over the course of a semester you may receive 30 different assignments from 30 different students. How will you keep track of 900 different grades, each sent as a private comment? Worse, as a private comment on different blogs?

    Here’s what I’m planning to do. I am using Frontpage’s web components to create an excel spreadsheet. Then I am creating two columns: one for student names, and the other for student IDs. When I enter grades, I work with the file in Frontpage, and before I save it, I’ll hide the column with the student names and then protect the active sheet.

    As far as I know, there’s no way for students to view the names column after it’s been hidden. I may be wrong about this — maybe some of you could easily hack into that. But I don’t know of any other way to easily record, tabulate, and distribute grades anonymously to students.

Viewing 15 replies - 151 through 165 (of 227 total)