richcon
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Upgraded install to multisite, now post thumbnails broken.I already did check “screen options,” it’s not there. Image uploading was disabled turns out (thanks for the tip!), but enabling it did not cause the missing featured image controls to return. They’re still missing, and still not available under screen options.
(I tried under both the Administrator user and an Editor-level account. Ditto for both.)
Forum: Hacks
In reply to: Keeping the order of tags as initially inputtedMy site’s having the same issue, so if anyone knows if it’s possible to order tags, I’d love to hear it. (If I figure out with a solution, I’ll post it too.)
Forum: Alpha/Beta/RC
In reply to: Using year/month/day permalinks with custom post typesAh, that’s too bad. I was hoping I’d be able to hack something up using wp_rewrite, but I couldn’t find any clear documentation for how exactly it works.
Thanks for the response though! Maybe better custom post permalinks for WordPress 3.1? ??
Since this plugin doesn’t seem to be maintained, I’m looking at how to fix it myself. But I’m stumped. There’s not much documentation out there on how WP_Rewrite works or how this plugin does its thing.
I can’t launch this site so long as the comment form is broken as it is, so for now we’re just sitting on it.
Any idea on where I can start?
As a quick correction, the URL it redirects me to is really:
/video/episode/1/comment-page-1/#comment-1
This breaks even though /video/episode/1 does correctly display the right post.
Forum: Fixing WordPress
In reply to: Loading image from uploads folder very slowI’m having a similar problem with a WordPress MU site. Did you ever figure it out?
Forum: Fixing WordPress
In reply to: (advanced) Parsing URI To Get Post ID?I’ve tracked it down, I think it’s WP->parse_request() in classes.php. I’m trying now to figure out how to call it manually without messing up any critical global variables…
Forum: Fixing WordPress
In reply to: (advanced) Parsing URI To Get Post ID?I know PHP must do this every time someone connects to the server, but I haven’t been able to figure out where or what function to use.
Er, I mean WordPress, not PHP. ??
Okay… after wrestling with it for a while, it… suddenly…
…somehow fixed itself. No idea what happened, just that everything’s working now.
I hate it when it does that. Hopefully the problem doesn’t come back!
To be clear, for the symptom (all pages blank) to appear, *both* the following are true:
- WP-Super-Cache plugin is activated
- “define(‘WP_CACHE’, true);” present in wp-config.php
(WP-Super-Cache’s status can be set to on or off, that doesn’t matter.)
Forum: Requests and Feedback
In reply to: get_pages: exclude by slugI should add that lists work as before… “exclude=hidden,7,21,unseen” will exclude posts ids 7 and 21, and posts with slugs “hidden” and “unseen”.
It’d be great if this got put into the trunk!
Forum: Plugins
In reply to: Register Plus email verification link redirects to front pageThere’s also a conflict with the Customize Your Community plugin, which rewrites your login form but fails to call the necessary hook used by this plugin. This can be easily fixed by editing the CYC plugin’s cyc.php file to change:
<label for="user_pass"><?php _e('Password:') ?></label> <input name="pwd" class="mid" id="user_pass" type="password" /> <input name="rememberme" class="checkbox" id="rememberme" value="forever" type="checkbox" checked="checked"/> <label for="rememberme"><?php _e('Remember me'); ?></label>
to:
<label for="user_pass"><?php _e('Password:') ?></label> <input name="pwd" class="mid" id="user_pass" type="password" /> <?php do_action('login_form'); ?> <input name="rememberme" class="checkbox" id="rememberme" value="forever" type="checkbox" checked="checked"/> <label for="rememberme"><?php _e('Remember me'); ?></label>