iand
Forum Replies Created
-
Forum: Plugins
In reply to: Anyone try Photon with 1.5 yet?Thanks, I’ll try when I get home. just to be clear the line should look like?:
$struct["htmlUrl"] = wp_specialchars(get_category_link($cat["cat_ID"]));
Edited: xmlrpc.php is working. I have a feeling I’ve got blog ID = 1. I’ll try that.Forum: Themes and Templates
In reply to: add a calendar?There is (or used to be) one with the classic theme. Copy the code and css into your current theme and restyle as necessary.
Forum: Plugins
In reply to: Flickr Gallery 0.7 and 1.5??That happened to me when I got the URL_ROOT path incorrect. Try droping the last trailing slash.
Forum: Plugins
In reply to: Oddball Plugin RequestSomething along these lines: http://wordpress.org/support/topic.php?id=24310 then you could post to the right category and manage it as you do with the rest of your blog.
Forum: Plugins
In reply to: Oddball Plugin RequestWhy not create something like a 5 post link-log?
Forum: Themes and Templates
In reply to: CSS Problem in 1.5It looks like it is part of your background images. check out kubrickheader_ipod.jpg, kubrickbg.jpg and kubrickfooter.jpg. I don’t think the greys are all the same.
Forum: Plugins
In reply to: New Weather ProblemMine too. Its caused by the weather cache file being blank. I think the site the plugin queries is down, ot at least not serving data correctly at the moment.
Forum: Fixing WordPress
In reply to: Calling all experts – need help with link logLooks like its back up – I had to reload a couple of times before it appeared.
The loop: http://codex.wordpress.org/The_Loop
Look for the section ‘Exclude Posts From Some Category’ the first line you want is
<?php if ( !(in_category('3')) ) { ?>where 3 is your category number. The other line you need is
<?php } ?> <!-- Close the if statement. -->Put these where they are used in the codex and with a bit of luck you category will disapear off the index page.Forum: Requests and Feedback
In reply to: Feedback: COMMENTING in 1.5Could you just make sure the ‘must be register and logged in to post’ box is not ticked? Or am I missing something entirely?
check out http://maczealots.com/tutorials/wordpress/ though I would recommend getting hold of phpmyadmin or similar aswell as it avoids the command-line nastyness.
Forum: Plugins
In reply to: Flickr Gallery 0.7 and 1.5??Thanks John, you got Spaminated 🙂 Looks like the linebreaks were appearing beacause I was putting the code in the ‘write’ area of the page and using index.php. Now I have the code in gallery.php and all is good. Thanks again.
Forum: Fixing WordPress
In reply to: Cant use Quicktag buttons on a MacintoshSearch for ‘Quicktags safari’ – theres a thread about here somewhere. You just have to comment out a couple of lines in the right file to get them to appear.
Forum: Fixing WordPress
In reply to: Cant use Quicktag buttons on a MacintoshI think its due to the way javascript is enabled on the Mac. I just live with it, or use firefox if I need to do lots of tags.
Forum: Plugins
In reply to: Anyone try Photon with 1.5 yet?jaredly – did you get Photon to post to the category you selected? If so, how? Since i upgraded to Strayhorn, I get “server error” and it posts only to the general category.
Forum: Fixing WordPress
In reply to: Categories in Alphabetical Order<?php wp_list_cats('sort_column=name'); ?>works for me (WP1.5)