Mike Toppa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: Deko Boku] Version 1.1 to 1.2This bug is fixed in the latest version of Deko Boko. You don’t have to install the WP-reCAPTCHA plugin.
Forum: Plugins
In reply to: Plugin: Deko Boko contact form – new version availableThis bug is fixed in the latest version of Deko Boko. You don’t have to install the WP-reCAPTCHA plugin.
Forum: Plugins
In reply to: [Plugin: Shashin] Error message with widgetsHi – I’m not sure why the widgets aren’t working for you. Is it all of them or just some of them? I have tested them with WP 2.7.1 and WP 2.8. Could you let me know which widget you tried, and what settings you used?
It looks like I accidently removed the getalbumlist() wrapper function in the latest version of Shashin. I will add it back and upload a fixed version.
Mike T
Forum: Plugins
In reply to: [Plugin: Shashin] Internal Server Error after upgrade to 2.7.1Hi Matt – yes, it works with WordPress 2.7.1. I haven’t heard of this error before. I just posted a beta release of Shashin 2.4 on my site – http://www.toppa.com/2009/shashin-24-beta-available/ . Please try the new version, and if you’re still having trouble, I’ll help you debug.
Forum: Installing WordPress
In reply to: Shashin 2.4Sorry about that – 2.4 was not ready for release. I did not create a 2.4 tag so I’m not sure why the wordpress.org repository released it. I’ve removed my work-in-progress code from the repository, so hopefully it will switch back to version 2.3.5 soon.
Forum: Themes and Templates
In reply to: Background in Firefox, not IESorry for the red herring. I looked at your code through Firebug, and it showed a missing semicolon at the end of your “background” line. A bug in Firebug?
Forum: Fixing WordPress
In reply to: single_cat_title return nothingThis one’s in the docs:
Can be used only outside The Loop.
http://codex.wordpress.org/Template_Tags/single_cat_title
If you don’t mind having the category linked, the simplest solution is probably to use the_category instead:
Forum: Themes and Templates
In reply to: Background in Firefox, not IELooks like the body background line in your css is missing a semicolon at the end. Firefox is probably just being more forgiving about it than IE.
Forum: Plugins
In reply to: Exclude CategoriesYour pastebin code looks mostly fine to me – you’ve correctly put the query_posts call before the Loop. I think it’s just a small typo causing the problem – you’ve got an extra semicolon after the ampersand (right before paged=$paged). Sorry, I would simply put the correct line here, but the forum editor would just muck with my ampersand again.
Also, I’d recommend less agitation in how you’re phrasing your requests here. Most folks in the forums (like me) aren’t getting paid to be here. I’ve actually just recently begun helping out. It’s one thing to get agitated if you’re paying for support; it’s another when people are here making a community effort.
Forum: Plugins
In reply to: Exclude CategoriesHi Granit – the code I posted was just a snippet to address what sounded like the key problem. Can you show me how you incorporated my code into yours?
Forum: Plugins
In reply to: Exclude CategoriesThat should be a regular ampersand in there – the forum editor converted it into an entity
Forum: Plugins
In reply to: Exclude CategoriesTry this with query_posts:
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-7&paged=$paged");This is a poorly documented part of wordpress – you need to pass a variable to control the paging, or you get stuck on page 1.
Forum: Plugins
In reply to: [Plugin: Deko Boko] does not workSorry I didn’t see your post earlier. Did you put the deko boko shortcode on one of your pages?
Forum: Fixing WordPress
In reply to: Single category feed with Feedburner?There is no option to add category feeds in version 2.3.1 of the Feedsmith Feedburner plugin. Can the 2.3 patch be added back?
Forum: Plugins
In reply to: [Plugin: Shashin] Error message with widgetsHi – that foreach statement is looping over a list of your albums. Have you added any of your Picasa albums to Shashin? Follow the Shashin link under your Tools menu – that’s where you can load your Picasa albums into Shashin.