manstraw
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Q: Renaming “Categories” in SidebarThis is why widgets can be your friend. It lets you change the title of each section in the sidebar, including Categories, without messing with your php files.
Forum: Fixing WordPress
In reply to: how do I hide grades on student posts?I was in your site back when you made a guest password available. I ‘saw’ it, but didn’t retain everything I saw. Doing each assignment as a category makes perfect sense of course. I might have thought of that if I had a teacher mind. 🙂
I’m putting that grade plugin thing on my pile. I have no idea when I’ll get to it, as the pile is a bit high right now.
@davidchait – I’ve never touched mu. Don’t know a thing about it. If I still wanted to write a plugin for a private message as I’ve described, would I be looking at pretty much the same task? Or would mu present me with some extra learning? I’ll basically be writing everything to an extra table in the database, and refer to post a post number.
Forum: Fixing WordPress
In reply to: How To: Post WP Blogs in other non-WP pageskwak, you’ve got the feedburner solution working for you, but I’ll answer you question anyway, in case someone else wants to know.
you put the magpie rss code on the regular website pages. you don’t modify wordpress at all to use it.
feedburner is great, but for those who do not wish to rely on an outside service ( you know, in case they go down, changes things etc. ), there is the the option of running your own rss tools. that’s my own personal preference.
Forum: Fixing WordPress
In reply to: how do I hide grades on student posts?You would be safer if you just saved a version after you delete the names column. No chance of hacking the names if they’re not there!
You just mentioned that the students are spread across different blogs? I thought this was all one blog.
In the spirit of keeping this frontpage less, or more to the point, entirely in wordpress, I think what you (or any teacher) really need is a custom plugin specifically for managing grades. Let me know if something like this might work …
Student composes assignement, or perhaps attaches assignement as a .pdf in wordpress as a post. There should be another field of information with the post that includes an assignment name or number. (Do you already have that? how do you know which assignment it is?) You, as a teacher read the assignment, and click an option to write/edit a grade and comment. This is not a regular comment in the wordpress sense, but a separate box of information that is bound to the post. Only a person with sufficient priviledge will be able to edit that data, and only the student/user and teacher will be able to see it when they are logged in. It could also send an email to student if the appropriate option is selected upon an edit. You as a teacher have access to a page that will display a list of the grades organized by assignment, or student, and optionally generate an excel spreadsheet.
I believe the above wouldn’t be terribly difficult to code. I’d like to know if you think that would work for you, and where you would change it. I’m also thinking about my brother the teacher, and may wish to put my time into something like this so he could benefit as well. I know how to code it outside of wordpress, but would need to study wordpress a bit to know how to properly integrade it as a simple plugin.
Forum: Fixing WordPress
In reply to: how do I hide grades on student posts?Sounds like you want a plugin that will let you make a “private” comment, than only the admin and the author can read. I don’t know of such a plugin, but it seems many people would like one. And then there are others who think such a thing is anti-blog. But hey, wordpress is a CMS too, and not just anymore.
I have no idea how to write such a plugin, as I’ve looked at the comment system. I would have one concern though, and that would what happens if the plugin is off (as in after an update, and it’s now imcompatible). I think it would need to make it so the comment can only be read by the owner or admin if the plugin is running. Perhaps through md5’ing it? Or perhaps using an extra field entirely attached to the post for private comments.
Maybe a private tag would suffice instead. That might be simplier.
Forum: Fixing WordPress
In reply to: how do I hide grades on student posts?thanks for that info Tom. handy to know.
Forum: Fixing WordPress
In reply to: Out of the blue errorsCheck with your web host to see if they’ve changed something.
You could also backup your database (and files too), and then upgrade to 2.0.3. Do the type of upgrade where you replace all the files except the ones you’ve modified. That typically means removing everything except wp-config.php and the wp-content folder. If you’ve modified anything else, you’ll have to sort that out.
Forum: Fixing WordPress
In reply to: characters coming across as “???”It seems there is a plugin to do a search and replace.
Forum: Fixing WordPress
In reply to: Why does IE chock on WPfirst, make sure you code has no errors, and is compliant.
second, install http://ie7.sf.net. It fixes the display errors in errors in IE6 and brings it back to the present.
Forum: Fixing WordPress
In reply to: How To: Post WP Blogs in other non-WP pagesDid you set $url to the feed you want to capture from before the calling code? Make sure the path to magpie is right in the require_once line.
require_once 'rss_fetch.inc';$url = 'http://www.kwak.org/blog/category/outdoor/feed';
$rss = fetch_rss($url);echo "Site: ", $rss->channel['title'], "<br>
";
foreach ($rss->items as $item ) {
$title = $item[title];
$url = $item[link];
echo "<a href=$url>$title</a></li><br>
";
}Forum: Fixing WordPress
In reply to: characters coming across as “???”Are you saying that if you fix the characters, the fix stays? And btw, you don’t need to restart a linux server when you do upgrades. You merely restart the particular service. Uptimes do not necessarily reflect when upgrades last happened.
I don’t know of code that will search and replace through your tables. You could export your database table, and use a wordprocessor to do a search and replace on the munged characters, then empty and reimport the table. Backup your database first before you go messing with it in such a way. If you have phpmyadmin, you could be able to export and import your data without a problem.
Forum: Fixing WordPress
In reply to: Roles: Unclear on descriptionsWhen you say they are restricted to posting in their own categories, do you mean they each get a uniquely named category? Perhaps you don’t need categories, but instead do your page display based on users. In other words, have everyone post to the default category, and have links in the side bar for that users posts. Did that make sense?
Forum: Fixing WordPress
In reply to: characters coming across as “???”did they change it recently? we’re looking for what changed so we know where you concentrate our efforts.
Forum: Fixing WordPress
In reply to: How To: Post WP Blogs in other non-WP pagesyou could get yourself magpie rss and use that to draw from your blog on your website page. it’s beyond the power of a plugin to put something on a standard webpage outside of the control of wordpress.
http://magpierss.sourceforge.net/
I’ve recently switched to using wordpress to do entire websites. I used do it like you, where I had the blog and a separate website. I’ve found it easier to just use the pages aspect of wordpress to create the other pages.
Forum: Fixing WordPress
In reply to: characters coming across as “???”I checked his html output, and he has
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />, and I also checked the content type in the http header, and it’s utf8 as well.There could be an issue with mysql. If his isp upgraded that recently, perhaps that’s the source of the problem.