iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post not showing up…The date stamp is correct.
It is dated December 7th, and I can see it here. WP2.0 has a little problem with posts saved as drafts under 1.5x:
http://wordpress.org/support/topic/53539?replies=9For uploads see: http://www.ilfilosofo.com/blog/old-style-upload
Is there a way to have the editor as in 1.5
You can turn of the fancy editor and go back to quicktags.Forum: Fixing WordPress
In reply to: Editing Plugins PageLooks good. How about posting the code here or on your site for others to use? Maybe even submit as a patch? 😉
Forum: Fixing WordPress
In reply to: Editing Plugins PageFirefox+web developer extension suggests it is
.active tdand.alternate.active tdin wp-admin.css (around line 690)
Untested theory though.Forum: Fixing WordPress
In reply to: Can’t post images in WP 2.0 using MacBefore downgrading you could give the old-style-upload plugin a go.
Forum: Plugins
In reply to: Search for a plugin: last albumAmazon Media Manager will display the album, but with a link to Amazon, I guess it may be possible to edit the link.
Alternativley, you could make a new category ‘albums’, and when you make a post to that category fill the excerpt field with a thumbnail of the cover which is a link to the post. You could then use get_posts or one of the recent post plugins to display the excerpt of the most recent post in the ablums category in the sidebar.
Hope that is clear (I use a similar method for the photos on my site).
Forum: Installing WordPress
In reply to: Can I Still Download WP 1.5?Full archive of WP versions:
http://static.wordpress.org/archive/Forum: Plugins
In reply to: Exhibit plugin update questionForum: Requests and Feedback
In reply to: Moving from WordPress.com to WordPress.orgI’ve not used it but wouldn’t
/import-rss.phpbe an option seeing as .com doesn’t yet support database export?Forum: Fixing WordPress
In reply to: Multiple Category changeBatch Categories should do what you want.
Forum: Fixing WordPress
In reply to: Display on ON Homepage ConditionSomething like this should work (not checked though – extra brackets might be needed):
<?php if ((is_home() && $paged =="1")) { ?>
do stuff
<?php } ?>the
$pagedbit is optional, it should make ‘do stuff’ appear on page 1 only.Forum: Fixing WordPress
In reply to: removing the date from pages?There are a few ways of doing what you want.
First is to see if you have apage.phpfile in your theme directory. If you do, find<?php the_date(); ">in it and change it to<?php// the_date(); ">(the // stops it working).Second option (if you don’t have
page.php) is to findindex.phpin your theme folder, save a copy of it aspage.php. The do step 1.Third option (which may not work exactly as expected) is find
<?php the_date(); ">inindex.phpand replace it with the following code:
<?php if (!is_page()) { ?>
<?php the_date(); ?>
<?php } ?>Hope one of these works.
Forum: Plugins
In reply to: Spam Karma 2 and Comment ModerationSK2 bypasses the WordPress comment moderation system. The plugin mentioned here should should re-enable it.
Forum: Fixing WordPress
In reply to: Drop-Down Menus for v1.5I use drop-downs and the css I use is:
select {
width: 160px;
}
A link to your site would be helpful too.Forum: Plugins
In reply to: Hacking c2c_get_recent_posts – need some php helpJust for reference, where do you use that code?
Forum: Plugins
In reply to: Showing metadata with get_recent_posts ?I’ve just edited my code a little. If you do get the category to work can you post your solution for others to use?