artfool
Forum Replies Created
-
Forum: Plugins
In reply to: [Trackable Social Share Icons] Pinterest "Pin It" not finding $first_imgShould probably give up on this plugin. Developer cannot be reached as his own site because all the contact forms go to 404 Page Not Found.
Ha, nevermind, got it working. I disabled the plugin then exported all the databases again just to be safe. Deleted them, then enabled the plugin again so that it would rebuild the databases from scratch. Then I went into the new databases and imported everything into the newly created ones, and now it can write new galleries again. Whew.
I tried this code to bring the Facebook “Like” button up to align with the rest of the icons and it just isn’t working. Is there something additional we need to add or remove from the CSS to bring Facebook up so that everything is on one line? Seems this would be a smart option to add to the plugin preferences itself.
[ Please do not bump, it’s not permitted here. ]
Forum: Plugins
In reply to: [NGG Video Extend] [Plugin: NGG Video Extend] Set Video Size?Found it here
Forum: Plugins
In reply to: [Plugin: NGG Video Extend] Set Video SizeThank you! I may have been the original post mentioned!
Forum: Plugins
In reply to: [NGG Video Extend] [Plugin: NGG Video Extend] Set Video Size?Anybody?
Forum: Fixing WordPress
In reply to: sociable Plugin Not showing up in posts..Same problem here, no matter where I’ve tried pasting in the code nothing works. It will show up on individual pages, etc.
<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?> <div id="content" class="narrowcolumn" role="main"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <div class="post_date"> <span class="day"><?php the_time('d') ?></span><br /> <span class="month"><?php the_time('M') ?></span><br /> <span class="year"><?php the_time('Y') ?></span> </div> <div class="post_content"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> </p> </div> </div> <div class="comments_content"> <?php comments_template(); ?> </div> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>