damienk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Glacial speed of 2.7?I’m having this same issue, it’s terribly slow! My Dashboard takes forever to load, and once loaded it is not very responsive to scrolling. I’m running a 3ghz mac with firefox 3, have yet to test it with other browsers and OS’s but this is ridiculous!
Is it possibly a plugin, however? I deactivated WordPress.com Stats plugin and the pages zoomed by and were responsive to scrolling. I enabled it again and same deal…
Any ideas?
EDIT: Hm this is weird. Firefox and IE on Windows XP have no problem. Safari for the Mac has no problem. But somehow Firefox 3 for Mac takes forever. Disabling all extensions to Firefox do nothing. ??? Anyone else having these issues?
I even thought that perhaps my version of Flash was outdated (since it’s only the WPstats that slow it all down, and that’s all flash) but even installing the latest version hasn’t changed a thing…
Forum: Fixing WordPress
In reply to: Post Getting “Cut” with WP FormattingAnother question, the bits and pieces such as the copyright and the W3C compliant, are those part of the footer that you were just mentioning, ie they show up right underneath the content?
Forum: Fixing WordPress
In reply to: last to first, not first to last?Your posts ARE ordered like this when I visit your Uncategorized page:
-Friday, October 17th, 2008
-Thursday, October 16th, 2008
-Wednesday, October 15th, 2008“Any way to switch it so it’s from most to least recent?”
Isn’t that the way it is now?Friday = most recent
Wednesday = less recentForum: Fixing WordPress
In reply to: Post Getting “Cut” with WP FormattingSo, what exactly is the problem? Your footer looks weird in the sense that it crosses over 3 columns, is this what you’re referring to? If so, where should it be/how do you want it to be?
Forum: Fixing WordPress
In reply to: post a picture in the commentsWordPress allows users to use some HTML in the comments. They can post a picture in the comments just like you would in a page you’re writing.
For example, using the following code when entering a comment would show the picture.
<img src="http://website/image.jpg">
Wherehttp://website/image.jpgis the URL to where their image is hosted online, for example their own website or image shack.The second option, since most users are not very knowledgable with HTML is to use a plugin like the one here: http://www.trevorfitzgerald.com/2007/12/wordpress-comment-images/
(scroll down to the free version.)It too, though, relies on the user uploading the picture on their own server somewhere, and then just placing the URL to the image into this plugin, which inserts the code into their comment to dispay their picture.
Hope that helps!
Forum: Fixing WordPress
In reply to: Newer Comments firsthttp://ww.wp.xz.cn/support/topic/149944?replies=5
That page should answer your question! =)
Forum: Fixing WordPress
In reply to: posting the same commentI was having the same problem, and for anyone still wondering, here’s how you fix it:
In the “
wp-includes” folder, locate the file “comment.php” and open this with a text editor. (ie: Notepad or TextEdit) Do a quick find (Edit > Find) for the wordduplicateand you’ll arrive at these lines of code.// Simple duplicate check expected_slashed ($comment_post_ID, $comment_author, $comment_author_email, $comment_content) $dupe = "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = '$comment_post_ID' AND ( comment_author = '$comment_author' "; if ( $comment_author_email ) $dupe .= "OR comment_author_email = '$comment_author_email' "; $dupe .= ") AND comment_content = '$comment_content' LIMIT 1"; if ( $wpdb->get_var($dupe) ) wp_die( __('Duplicate comment detected; it looks as though you\'ve already said that!') );You can delete this code completely or mark it as comments with two forward slashes at the beginning of each line
//Delete it if you never want to see it again, and comment it if you wish to keep it for a later use.
Once complete, save it and upload it to the appropriate location on your web server.
Ta da! Go post the same comment twice, no one cares any more.
Please note that future upgrades to WordPress may very well overwrite your comments.php that you just edited, and you may need to do this again.
Forum: Fixing WordPress
In reply to: Comments don’t submit in Internet Explorer. -.-NEVERMIND:
I managed to fix the stupid IE bug by replacing
<button value="submit" class="submitBtn"><span>Okay, I'm done.</span></button>with
<input name="submit" type="submit" id="submit" tabindex="5" value="Post It!" class="submitBtn" />Buttons don’t work in IE I guess?
Forum: Fixing WordPress
In reply to: Comments don’t submit in Internet Explorer. -.-I know the template does some fancy effects when you submit a comment in Firefox, like the page does a smooth-scrolling effect and the comment appears… Anyone, anyone at all?
Forum: Fixing WordPress
In reply to: Lone unwanted left angle bracket (<) on a pageIs it possibly just a human error? Taking a look in Firebug reveals this:
<div id="homepagefeatured"> <h1>Product List</h1> We are preparing our catalogue. In the meantime here is our latest Product List. <br /> < <table cellspacing="1" cellpadding="1" border="0" align="left"> <tbody>Just a lone “<” sitting there before the table. Perhaps you placed an extra bracket in there by mistake? If not, please post some of the code you see in your theme editor.
Forum: Fixing WordPress
In reply to: Changing from Pending Reviews to PostedFrom your dashboard, click on the manage tab. This will open all your posts. Click on say the first one. On the right hand side of this post editor window, there’s a box for publish status. Click the drop down pick list and select Published and then save the post.
If that doesn’t do it, are you the Admin?
Forum: Fixing WordPress
In reply to: Get something from another URLFrom what you’re saying, all you want is to have to change Blog A’s header and Blogs B-F’s headers change too. If this is correct, try this.
<?PHP include("http://bloga.com/header.php");?>Where “http://bloga.com/header.php” leads to your header in Blog A. Place that code in your Main Index Template so that it replaces:
<?php get_header(); ?>See how that works..
Forum: Fixing WordPress
In reply to: Comments don’t submit in Internet Explorer. -.-I disabled WP Ajax Edit Comments and anything else really related to the comments and no luck. I continued on and disabled all of my plugins and nothing changed… Any ideas?