JohnA
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link Descriptions disappeared after upgrading to 2.1I’m glad its not just me bamboozled by this…
An alternative would be: can anyone name a WordPress theme that does this properly under WP2.1 so that we can have a look at the code?
Forum: Fixing WordPress
In reply to: Link Descriptions disappeared after upgrading to 2.1OK, maybe I should be a little more clear. Can anyone indicate how to implement the new function with a demonstration of actual code changes from the old?
Forum: Fixing WordPress
In reply to: WP2.1 Previous/Next Entries not workingBump for the weekend
Forum: Fixing WordPress
In reply to: Tips for Designing within an existing template?Why not simply install WordPress and grandfather the old html pages?
Forum: Everything else WordPress
In reply to: Comments turned off, but comments coming through!Commando,
As far as I can tell, if you go to Options > Discussion in the Admin panel and deselect:
“Allow link notifications from other Weblogs (pingbacks and trackbacks.)”
and
“Allow people to post comments on the article “then all future posts will not allow comments, pingbacks or trackbacks.
Forum: Installing WordPress
In reply to: Database problem after upgrade to 2.05Resolution: This problem was caused by a memory crunch, which slowed down the php scripts, which timed out the request for comments if the number of comments exceeded 175-200. An upgrade or three later, the problem no longer appears.
I have closed this thread as resolved.
Forum: Fixing WordPress
In reply to: Link Descriptions disappeared after upgrading to 2.1Another bump in the wall.
Forum: Fixing WordPress
In reply to: Link Descriptions disappeared after upgrading to 2.1BUMP
Forum: Fixing WordPress
In reply to: Link Descriptions disappeared after upgrading to 2.1Which part do I change the function from/to?
Forum: Fixing WordPress
In reply to: Link Descriptions disappeared after upgrading to 2.1Here’s what I have:
<!-- Begin - Links from the 'Links Manager'--> <?php $link_cats = $wpdb->get_results("SELECT cat_id, cat_name FROM $wpdb->linkcategories"); foreach ($link_cats as $link_cat) { if (get_links($link_cat->cat_id, '', '', '', FALSE, '', FALSE, FALSE, -1, FALSE, FALSE)) { ?> <div class="left-widget-title" id="linkcat-<?php echo $link_cat->cat_id; ?>"> <?php echo $link_cat->cat_name; ?> </div> <div class="left-widget"> <ul> <?php wp_get_links($link_cat->cat_id); ?> </ul> </div> <?php } } ?>Forum: Installing WordPress
In reply to: Database problem after upgrade to 2.05It’s too late to consider dropping/replacing. The blog has moved on.
I did find that moving the comments temporarily to another post, caused the original post to work properly.