Callum Macdonald
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: XML-RPC adding publishing date to new post?I can confirm this works for me, I have successfully used the metaBlog API and it accepts a date. One thing to note though, the date format is not 100% ISO 8601, it doesn’t accept a time zone.
Forum: Fixing WordPress
In reply to: XML-RPC and new categoriesI just read this thread which talks about Photon (a plugin for iPhoto I believe) which can list categories and create new categories via the API.
http://wordpress.org/support/topic/21721I’m not sure how it does it though. Possibly the mt.setPostCategories method. I know that submitting new categories through metaWeblog.newPost doesn’t work, it simply ignores them (as per the spec).
If I find a solution I’ll post it back here.
Forum: Fixing WordPress
In reply to: XML-RPC and new categoriesHey Ramis,
Did you find a solution to creating categories via XMLRPC?
Cheers – Callum.
Forum: Themes and Templates
In reply to: A bunch of fully localized themesAnyone know where these themes have gone? The site seems to be all adverts now. Or any recommendations for other fully internationalised themes? I’m trying to build a multi-lingual site in English / French / Spanish and looking for a nice theme that will handle all 3 languages with a multilingual plugin. 🙂
Forum: Fixing WordPress
In reply to: Change default button on post.php to “Publish”MichaelH: Thanks for that, I had found a few posts on the forum about changing the default post status. What I want to do is change the default button, not the status, so I can still choose to hit “Save” and save the post as a draft.
I had a look in the source, and it turns out that the default button is actually the one which appears first, so that’s normally “Save and Continue Editing”. I’ve changed the tab order and set the Publish button to be bold, which is what makes it appear to be the default.
For reference, the changes are in
/wp-admin/edit-form-advanced.phpLine 45 change:
tabindex="3"totabindex="4"Line 199 change:
tabindex="4"totabindex="5"
and remove"style="font-weight:bold;"Line 204 change:
tabindex="5"totabindex="3"
and then add"style="font-weight:bold;"immediately after the code you’ve just changedThis changes the tab order so when you press tab in the content text area it will automatically take you to the “Publish” button. However, in editing all this code I realise that you can simply use the shortcut “P” (Alt-P on Windows/Firefox).
Enjoy, Callum.
Forum: Plugins
In reply to: TIP: Create links which open in a new windowHmm, cancel that, pasting the code didn’t work, not sure why, but there you go!
Forum: Fixing WordPress
In reply to: Page Options: Page OrderCheck out this page, should explain it:
http://codex.wordpress.org/Template_Tags/wp_list_pagesBasically the page order field isn’t used unless you specify it according to that link.
Good luck.