heintore
Forum Replies Created
-
Same thing happens here: The back link from a single entry just takes you to the same entry instead of the directory overview.
Forum: Fixing WordPress
In reply to: Vimeo embedding won't workSame problem here.
Alright, I think I’ve come up with a temporary solution that might work for some of you.
It’s by no means as elegant as the plugin, as the code below checks whether the post has expired on every page load. If it has indeed expired, its status is set to draft (or private, that’s up to you).
In the loop — right after the_post(); — place the following code:
// check to see whether post has expired $expiration = get_post_meta($post->ID, "expiration-date", true); if ($expiration && (time() > $expiration)) { $postSettings = array( 'post_status' => 'draft' ); wp_update_post($postSettings); } else { // normal content goes here }Same here—the plugin’s been broken since 3.1.
I’m really hoping the author is working on an update here, as it’s affecting several of my sites.
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedThanks a lot pinkbeats, that plugin seems to fit my needs perfectly. You’re an angel!
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedI’d really, really like to reduce the overall height of the player, but apparently that’s not an easy thing to do.
I do understand why it has been set a fixed height (due to the text and progress bar etc.), but I’ve eliminated those features, and have simply set the width of the object element so that all that fits are the play and pause buttons. Works perfectly!
However, I hate the fact that the player is so huge. Does anybody know how I can reduce the size of the elements? It appears that the only solution is to experiment with the source and compile the plugin again, but that’s way beyond what I can accomplish.
So if anybody know how to do it (or can give me a kick in the right direction) I’d be forever grateful!