Mike
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: JavaScript issues in 2.8: Can’t do anything in the admin…I can confirm that upgrading Intense Debate fixed it for me on three different blogs.
Forum: Alpha/Beta/RC
In reply to: WP 2.8 beta 1 Unique email per userPerfect, thank you.
Forum: Alpha/Beta/RC
In reply to: WP 2.8 beta 1 Unique email per userInteresting. At antiwar.com we have over 150 authors that editors (2 or 3) enter into the WP blog. I would like to assign each user the same email, but I suppose b/c I don’t use those email addresses, I could just assign something “dead” like email123x@antiwar.com. Ideally, I could turn this feature off, but that is probably hard. Is the new DB structure impose UNIQUE on the email address of the wp_users table?
Forum: Alpha/Beta/RC
In reply to: Missed ScheduleI am having a similar problem on my server. However, scheduling workings for a blog hosted at:
http://domain.com/blog
http://domain.com/blog2but fails at both:
http://sub1.domain.com/
http://sub2.domain.com/All run 2.7.1 and all receive 100s if not 1000s of hits an hour.. Could the PHP settings differ on the subdomains?
Forum: Fixing WordPress
In reply to: Disable automatic line breaks in html editorbump!
Forum: Fixing WordPress
In reply to: Author permalink change post authorOk, the problem is simpler:
Simply set the permalink structure to:
/%author%/%year%/%monthnum%/%postname%
to anything with author and they give 404.
Forum: Fixing WordPress
In reply to: Biographical Information cannot contain image tagsSolution (though ugly):
– download http://www.cimatti.it/blog/2007/02/12/cimy-user-extra-fields-for-wordpress-21/
– add an extra field called “FULLBIO”
– turn on the get_cimy function
– add the following in your template:if(is_single()) { echo "<hr>"; echo get_cimyFieldValue(get_the_author_ID(), 'FULLBIO'); echo "<br /><br />";}Forum: Fixing WordPress
In reply to: Biographical Information cannot contain image tagsI believe that this can be modified by messing with the global variable $allowedtags in kses.php. Any help with this so that I don’t have to mess with core files? I can’t find a plugin that does it (yes, I searched!)
Forum: Fixing WordPress
In reply to: Biographical Information cannot contain image tagsThanks for the reply. However, you can put in “a” tags and italics, so there must be an explicit setting for images. I will check the core files for the line of code.
Forum: Fixing WordPress
In reply to: Biographical Information cannot contain image tagsAnyone? I don’t think that this is a bug, but it would be nice if one could include images in the bio field for users. I remember years ago when a response on this board took 5 mins.
I had this problem and had to delete the wp-contact-form plugin, log-in and then re-install. What could a plugin do to break this login system?
Same problem with 2.1.3. It appears that this bug has been set to milestone at 2.2. What do we do until then??
Forum: Fixing WordPress
In reply to: Multiple loop questionOk, you cannot exclude 2 categories with query posts, and you cannot avoid my problem above with a plugin like Category Visibility or any other hack that I could find. Here is my horrible, horrible solution:
<?php query_posts('cat=1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40'); ?>Note that 15 and 16 are missing.
Hopefully my client will never have more than 40 categories.
Forum: Fixing WordPress
In reply to: Multiple loop questionOk, found this/ . However, it still suffers from the aforementioned problem: in the if statement, the post is counted as displayed. So if the two most recent posts are “Photo” and “Feature” the loop to display the two most recent will not display a thing.
Forum: Fixing WordPress
In reply to: Error messageThanks for your help!