Title: artfool's Replies | WordPress.org

---

# artfool

  [  ](https://wordpress.org/support/users/artfool/)

 *   [Profile](https://wordpress.org/support/users/artfool/)
 *   [Topics Started](https://wordpress.org/support/users/artfool/topics/)
 *   [Replies Created](https://wordpress.org/support/users/artfool/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/artfool/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/artfool/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/artfool/engagements/)
 *   [Favorites](https://wordpress.org/support/users/artfool/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Trackable Social Share Icons] Pinterest "Pin It" not finding $first_img](https://wordpress.org/support/topic/pinterest-pin-it-not-finding-first_img/)
 *  Thread Starter [artfool](https://wordpress.org/support/users/artfool/)
 * (@artfool)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/pinterest-pin-it-not-finding-first_img/#post-3770180)
 * Should 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] [Plugin: NextGEN Gallery] Migrated NextGen, but can't create new galleries](https://wordpress.org/support/topic/plugin-nextgen-gallery-migrated-nextgen-but-cant-create-new-galleries/)
 *  Thread Starter [artfool](https://wordpress.org/support/users/artfool/)
 * (@artfool)
 * [14 years ago](https://wordpress.org/support/topic/plugin-nextgen-gallery-migrated-nextgen-but-cant-create-new-galleries/#post-2705769)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Trackable Social Share Icons] [Plugin: Trackable Social Share Icons] Possible to move Google Plus](https://wordpress.org/support/topic/plugin-trackable-social-share-icons-possible-to-move-google-plus/)
 *  [artfool](https://wordpress.org/support/users/artfool/)
 * (@artfool)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-trackable-social-share-icons-possible-to-move-google-plus/#post-2608545)
 * 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](http://codex.wordpress.org/Forum_Welcome#No_Bumping).]_
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NGG Video Extend] [Plugin: NGG Video Extend] Set Video Size?](https://wordpress.org/support/topic/plugin-ngg-video-extend-set-video-size/)
 *  Thread Starter [artfool](https://wordpress.org/support/users/artfool/)
 * (@artfool)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-ngg-video-extend-set-video-size/#post-2159565)
 * Found it [here](http://wordpress.org/support/topic/plugin-ngg-video-extend-set-video-size-1?)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: NGG Video Extend] Set Video Size](https://wordpress.org/support/topic/plugin-ngg-video-extend-set-video-size-1/)
 *  [artfool](https://wordpress.org/support/users/artfool/)
 * (@artfool)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-ngg-video-extend-set-video-size-1/#post-2187946)
 * Thank you! I may have been the original post mentioned!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NGG Video Extend] [Plugin: NGG Video Extend] Set Video Size?](https://wordpress.org/support/topic/plugin-ngg-video-extend-set-video-size/)
 *  Thread Starter [artfool](https://wordpress.org/support/users/artfool/)
 * (@artfool)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-ngg-video-extend-set-video-size/#post-2159564)
 * Anybody?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [sociable Plugin Not showing up in posts..](https://wordpress.org/support/topic/sociable-plugin-not-showing-up-in-posts/)
 *  [artfool](https://wordpress.org/support/users/artfool/)
 * (@artfool)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/sociable-plugin-not-showing-up-in-posts/#post-1091217)
 * 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 &raquo;'); ?>
                           </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(); ?>
       ```
   

Viewing 7 replies - 1 through 7 (of 7 total)