Excellent fix. I wasn’t getting any php errors but the plugin wasn’t creating the table in the database for wp_{blogid}_taxonomymeta for any site other than the initial site.
Thanks for the fix.
It can be done by putting the following code in the main section of a page template:
cat=5 is the category id
<?php query_posts('cat=5&showposts=1'.get_option('posts_per_page=')); ?>
//while loop....
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
This solution requires a little php knowledge.
Any ideas how to link a post to show up on a specific page?