Mark Jaquith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image Search BrokenDoes it work if you switch the theme back to what you had before? If so, then you’ll have to take it up with the author of the new theme — they might be doing something that interferes.
Forum: Fixing WordPress
In reply to: Permalink Issue Crashed SiteWhat text did you enter? Nothing you enter there should prevent you from accessing the WP admin — if it is, that’s a bug.
Forum: Fixing WordPress
In reply to: Unable to access WP adminThe issue is in your theme. Try renaming the theme folder (
wp-content/themes/cefc) to something else, temporarily. That should allow you to access the admin and activate another theme.Forum: Requests and Feedback
In reply to: What Should 2011 Hold for WordPress?- Make one-click updates work for more people. Interactive setup guide instead of just an error message.
- Drop PHP 4 compat.
- Simplify taxonomy table structure by merging term and term taxonomy tables.
- Improve the taxonomy API.
- Media: faster, simpler, obvious.
- Unit tests: they’re a mess. We need reliable ones, that run in some hosted environment so that every WordPress contributor can test their patches and see the result.
- Move Akismet and Hello Dolly out of the core package.
Forum: Alpha/Beta/RC
In reply to: Accidental upgrade to wp 3.1betaZenec — which localization were you using?
Forum: Fixing WordPress
In reply to: How to create a page like thisA Custom Page Template would be good. On that template, you could use query_posts():
<?php query_posts( 'tag=your-special-tag&posts_per_page=9' ); ?>And then just follow with a normal WordPress loop.
Alternatively, or if you want to enable paging, make a custom tag template for that special tag.
Forum: Plugins
In reply to: [Plugin: Page Links To] add rel attributeWhat theme are you using? Some themes do their own custom menu code, and that can interfere.
As of right now, I’d recommend using a theme that uses WP 3.0’s custom nav menus, which in some respects makes my plugin obsolete.
Forum: Everything else WordPress
In reply to: my plugin page doesn't workI’m looking into this. Will follow up via email.
Forum: Plugins
In reply to: Possession List/Sidebar WidgetCustom Post Type UI might get you started. I’d create a Page-like custom post type called “Posessions.” And then add the category taxonomy to it. But as for listing them, you’ll have to follow some tutorials to see how to do that.
You could also just make a “Posessions” page and make each possession a subpage of that page.
Forum: Developing with WordPress
In reply to: enqueue javascript js with conditional comments (for IE)Also consider that you can use the global
$is_IEto determine IE, and only enqueue if so. But if you want to not enqueue for IE 9 and higher, you’ll have to do some User Agent parsing yourself.Also worth reading, on the subject of HTML5 support detection:
Forum: Plugins
In reply to: Page Links To and permalinksYes, for pages that have a custom link set via the “Page Links To” plugin. You can’t edit the “slug” of the local permalink any longer. But that slug shouldn’t matter, as all links should point to the custom link you’ve set.
Forum: Plugins
In reply to: [Plugin: Page Links To] Causing issue with Google XML Sitemaps pluginThat’s a problem with the Sitemaps plugin. It should be ensuring that links aren’t domain-relative.
Forum: Plugins
In reply to: Page Links To Plug in – does not open new browser windowI have never been able to duplicate this bug. I can’t take a crack at solving it if I never see it in action! 🙁
Please try to duplicate this using the default theme, and with all other plugins deactivated. Create a new page, set the links-to URL, and check the “new window” box. If that doesn’t trigger the bug, then try it with your actual theme, but all other plugins still deactivated. That should narrow it down to a theme issue or a plugin-conflict issue.
Forum: Plugins
In reply to: page-links-to validation errorIt only uses that if you select the “open in new window” option for a link.
You can either ignore the validation warnings (let go, Luke… use the Force), or you can uncheck the “open in new window” box. There are workarounds, but they involve JavaScript, which isn’t ideal.
No clue. Never seen that happen.
Are you using any redirection plugins, like this?
http://wordpress.org/extend/plugins/redirection/
That could be interfering.