willoller
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP – Crashing IE?>bump<
I am having the same issue, with the same offset as doodlebee: 001ab19b.
IE 6 only.
ModVer: 6.0.2800.1314
AppVer: 6.0.2800.1106Forum: Themes and Templates
In reply to: Customising Comment Submission Error PageSorry, that link is dead. Try http://www.willoller.com/wordpress-styled-comments-errors/
Forum: Themes and Templates
In reply to: How to display comment error in theme page ?Sorry, that link is dead. This one is correct.
http://www.willoller.com/wordpress-styled-comments-errors/Forum: Themes and Templates
In reply to: How to display comment error in theme page ?Okay, I have a dirty hack solution to this problem at my site, http://www.willoller.com/wp-comment-errors
Let me know if it helps you out.
Forum: Themes and Templates
In reply to: Customising Comment Submission Error PageOkay, I have a dirty hack solution to this problem at my site, http://www.willoller.com/wp-comment-errors
Let me know if it helps you out.
Forum: Fixing WordPress
In reply to: Problem with links formatting… Link Manager 2.0I’m using 2.0.5 —
It appears those attributes were overlooked when Dougal added the get_links_list() function, but the function comment specifies an unordered HTML list, which is correct.
My solution:
edit
wp-includes/links.phpMod the function as follows:
change the following lines (starting at 542-ish)
foreach ($cats as $cat) {
// Handle each category.
// First, fix the sort_order info
== trunc ===
bool_from_yn($cat['show_updated']));
// Close the last category
echo "nt</ul>n</li>n";
}to:
foreach ($cats as $cat) {
echo ' <li id="linkcat-' . $cat['link_category'] . '"><h2>' . $cat['cat_name'] . "</h2>nt<ul>n";
wp_get_links($cat[link_category]);
}