mtedwards
Forum Replies Created
-
Forum: Plugins
In reply to: bbPress 2.0.2 "New Posts" pluginYeah… It really does seem like a feature that a lot of people would need. Hopefully it will be added soon or a useable plugin / workaround worked out…
I wish I knew more about how to build one myself.
Forum: Plugins
In reply to: [Edit Flow] [Plugin: Edit Flow] Email Notifications for AssignmentsA small work around that I’ve found, it’s not perfect but it may help…
1) Create the Post
2) Add any editorial meta data thats needed
3) Save the post as draft (or what classification you have)
4) Add the Author to the notification list (you have to save the post once before you can add people)
5) Save post
6) Add an editorial comment letting them know that there is a new article for them.As I siad… it’s not perfect… but it might help
Forum: Plugins
In reply to: bbPress 2.0.2 "New Posts" pluginAny luck with this…. I am also looking for a plugin that does this.
Cheers
Forum: Fixing WordPress
In reply to: Custom Meta Box, working but not saving valuesToo make sure my code is not removed… I’ve added it to pastebin here:
I’ve got the custom meta boxes displaying; a text box and a drop down list, but I can’t get them to save their values to the database.
Thanks again for any guidance you can give…
Forum: Plugins
In reply to: [MP3-jPlayer] [Plugin: MP3-jPlayer] The player appears but it doesn′t playHi I think I am having a similar problem. The plugin is finding the files, but is not linking to them.
https://ashsoutham.emptyheadactorswebsites.com/musicI’m sure they are mp3s as they were playing using a different plugin.
Any ideas what i might try?
Thanks
Forum: Fixing WordPress
In reply to: How to “If is echo HTML / PHP / HTML”Hi Guys,
I am having a similar problem, I am trying to get a loop to check if there is a certain meta tag in a post and if there is, then echo certain information. Unfortunately it keeps breaking. Any Ideas?
<?php query_posts( 'post_type=page' ); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php $key = "when"; $club_when = get_post_meta($post->ID, $key, true); if (!$club_when){ echo ""; }else{ echo "<p>" . get_post_meta($post->ID, 'when',true); . "<br/> <a href='" . the_permalink(); . "'>" . the_title(); . "</a></p>"; } ?>
Thanks
Matt