Title: nickd32's Replies | WordPress.org

---

# nickd32

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 42 total)

1 [2](https://wordpress.org/support/users/nickd32/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nickd32/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/nickd32/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Download Stats](https://wordpress.org/support/topic/download-stats/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/download-stats/#post-5706990)
 * +1 for this. I have commented inside the GitHub issue you referenced above. Thanks
   Hugh!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Enclosure URLs and rewrites](https://wordpress.org/support/topic/enclosure-urls-and-rewrites/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/enclosure-urls-and-rewrites/#post-5955888)
 * For what it’s worth, we ran into this exact same issue with WP Engine, and here’s
   how they fixed it. Hope this helps any WPE users…
 * > … the issue occurring was due to the configurations we apply to all of our 
   > servers, we have Nginx as the first line being hit, thus rules setup via the
   > apache directive .htaccess or ones that aren’t set to nginx process differently.
   > I have applied the Nginx rule on our end to process the redirects for the path
   > ^/podcast-download/:
 *     ```
       location ~* ^/podcast-download/ {
       proxy_pass http://localhost:6776;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Template Tag Shortcodes] Anyone still using Template Tag Shortcodes?](https://wordpress.org/support/topic/anyone-still-using-template-tag-shortcodes/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/anyone-still-using-template-tag-shortcodes/#post-4203626)
 * Actually just answered my own question. Default attributes are already built 
   in. w00t!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Template Tag Shortcodes] Anyone still using Template Tag Shortcodes?](https://wordpress.org/support/topic/anyone-still-using-template-tag-shortcodes/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/anyone-still-using-template-tag-shortcodes/#post-4203625)
 * Maybe put it up on GitHub for users to fork? I agree that a simple mechanism 
   to include parameters other than the defaults would be ideal.
 * [wp_list_categories tax=”foo”]
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] [Plugin: Facebook] Comments outside the_content](https://wordpress.org/support/topic/plugin-facebook-comments-outside-the_content/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-facebook-comments-outside-the_content/#post-2871174)
 * OK, here’s my new fix. This gets a little more tricky, since now the comment 
   code is in a separate PHP class.
 * Place this in your functions.php file:
 *     ```
       add_action( 'wp_head', 'fix_fb_comment_placement' );
       function fix_fb_comment_placement() {
       	$priority = apply_filters( 'facebook_content_filter_priority', 30 );
       	remove_filter( 'the_content', array( 'Facebook_Comments', 'the_content_comments_box' ), $priority );
       }
       ```
   
 * Place this inside your comments.php file (or wherever you want the FB comments
   box to go…)
 *     ```
       <?php //Added for Official FB plugin
           $fb_comments = new Facebook_Comments();
           echo $fb_comments->the_content_comments_box();
       ?>
       ```
   
 * I decided to turn comments on/off based on whether regular WP comments were on
   for a particular post:
 *     ```
       <?php if ( comments_open() ) {
           //Added for Official FB plugin
           $fb_comments = new Facebook_Comments();
           echo $fb_comments->the_content_comments_box();
       } ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] [Plugin: Facebook] Comments outside the_content](https://wordpress.org/support/topic/plugin-facebook-comments-outside-the_content/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-facebook-comments-outside-the_content/#post-2871173)
 * Note that this solution doesn’t work in the new version (1.1.8) of the plugin,
   as the ‘fb_comments_automatic’ filter has been removed from the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] How to disable facebook plugin from generating Open Graph in head section](https://wordpress.org/support/topic/how-to-disable-facebook-plugin-from-generating-open-graph-from-head/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/how-to-disable-facebook-plugin-from-generating-open-graph-from-head/#post-3251668)
 * I had the same issue, and I had to disable it in the Yoast SEO plugin.
 * (unless there’s another way I haven’t figured out yet).
 * FYI, it’s also helpful to use the FB debugger tool to check a post’s thumbnail.
   
   [https://developers.facebook.com/tools/debug](https://developers.facebook.com/tools/debug)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] [Plugin: Facebook] Comments outside the_content](https://wordpress.org/support/topic/plugin-facebook-comments-outside-the_content/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-facebook-comments-outside-the_content/#post-2871168)
 * [@lonchbox](https://wordpress.org/support/users/lonchbox/) – I found a cleaner
   way that only affects the FB comments (and doesn’t disturb the other elements…
   like buttons, etc.)
 * First, from the [Codex…](http://codex.wordpress.org/Function_Reference/remove_filter)
 * > It is also worth noting that you may need to prioritise the removal of the 
   > filter to a hook that occurs after the filter is added. You cannot successfully
   > remove the filter before it has been added.
 * The trick is to add a new action hook that occurs after `init` — so I just chose`
   wp_head`, but there is [a list of other action hooks you could use](http://codex.wordpress.org/Plugin_API/Action_Reference).
 * Here is my code.
 *     ```
       add_action( 'wp_head', 'fix_fb_comment_placement' );
       function fix_fb_comment_placement() {
       	remove_filter('the_content', 'fb_comments_automatic', 30);
       }
       ```
   
 * Then, in your comments.php file (or wherever you want the comments to show up,
   include this line of code:
    `<?php echo fb_comments_automatic(''); ?>`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] [Plugin: Facebook] Comments integration](https://wordpress.org/support/topic/plugin-facebook-comments-integration/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-facebook-comments-integration/page/2/#post-2810014)
 * [@elmo5](https://wordpress.org/support/users/elmo5/) – I found a cleaner way 
   that only affects the FB comments (and doesn’t disturb the other elements… like
   buttons, etc.)
 * First, from the [Codex…](http://codex.wordpress.org/Function_Reference/remove_filter)
 * > It is also worth noting that you may need to prioritise the removal of the 
   > filter to a hook that occurs after the filter is added. You cannot successfully
   > remove the filter before it has been added.
 * The trick is to add a new action hook that occurs after `init` — so I just chose`
   wp_head`, but there is [a list of other action hooks you could use](http://codex.wordpress.org/Plugin_API/Action_Reference).
 * Here is my code.
 *     ```
       add_action( 'wp_head', 'fix_fb_comment_placement' );
       function fix_fb_comment_placement() {
       	remove_filter('the_content', 'fb_comments_automatic', 30);
       }
       ```
   
 * Then, in your comments.php file (or wherever you want the comments to show up,
   include this line of code:
    `<?php echo fb_comments_automatic(''); ?>`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPMU Theme Usage Info] [Plugin: WPMU Theme Info] Bug: causes WP 500 error with certain setup in 3.4](https://wordpress.org/support/topic/plugin-wpmu-theme-info-bug-causes-wp-500-error-with-certain-setup-in-34/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wpmu-theme-info-bug-causes-wp-500-error-with-certain-setup-in-34/#post-2848592)
 * I just found a similar plugin that gives basic theme usage stats for Multisite,
   and it works fine (i.e. no 500 errors)
 * [http://wordpress.org/extend/plugins/wordpress-mu-theme-stats/](http://wordpress.org/extend/plugins/wordpress-mu-theme-stats/)
 * I think I’m going to get rid of _WPMU Theme Info_.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPMU Theme Usage Info] [Plugin: WPMU Theme Info] Bug: causes WP 500 error with certain setup in 3.4](https://wordpress.org/support/topic/plugin-wpmu-theme-info-bug-causes-wp-500-error-with-certain-setup-in-34/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wpmu-theme-info-bug-causes-wp-500-error-with-certain-setup-in-34/#post-2848591)
 * Same issue for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[New Blog Defaults] [Plugin: New Blog Defaults] New version for WordPress latest versions?](https://wordpress.org/support/topic/plugin-new-blog-defaults-new-version-for-wordpress-latest-versions/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-new-blog-defaults-new-version-for-wordpress-latest-versions/#post-2346630)
 * I think I found a fix! You can **force a manual reset of the options** this way…
 * 1. Go to the Network Settings >> New Blog defaults page
 * 2. In the URL at the top, add **_`&reset=1`_** to the end of the link, so it 
   looks like this screenshot:
    [http://cl.ly/1I2F2Q1q2X3R101h3t2c](http://cl.ly/1I2F2Q1q2X3R101h3t2c)
 * 3. Hit enter, and that should reset all the default options for you. From there,
   you can make your changes and hit save.
 * It works for me now. Hopefully it will work for you too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[New Blog Defaults] [Plugin: New Blog Defaults] New version for WordPress latest versions?](https://wordpress.org/support/topic/plugin-new-blog-defaults-new-version-for-wordpress-latest-versions/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-new-blog-defaults-new-version-for-wordpress-latest-versions/#post-2346629)
 * Add me to the list as well.
 * Expected behavior = Expect settings to save in the DB when we click save
 * What am I experiencing? –> click save and then refresh the page and nothing saves
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My Content Management] [Plugin: My Content Management] not clear on usage](https://wordpress.org/support/topic/plugin-my-content-management-not-clear-on-usage/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-my-content-management-not-clear-on-usage/#post-2398460)
 * Yes, I had to revert back to my old version too. I think the plugin author neglected
   to add this fix in with the new version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Firelight Lightbox] [Plugin: Easy FancyBox] Using Captions](https://wordpress.org/support/topic/plugin-easy-fancybox-using-captions/)
 *  [nickd32](https://wordpress.org/support/users/nickd32/)
 * (@nickd32)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-easy-fancybox-using-captions/#post-2391111)
 * FYI – adding that code to the <head> section worked great!
 * Here’s my final version, modified per [@ravanh](https://wordpress.org/support/users/ravanh/)‘
   s suggestion.
 * [http://pastebin.com/5srPv35b](http://pastebin.com/5srPv35b)

Viewing 15 replies - 1 through 15 (of 42 total)

1 [2](https://wordpress.org/support/users/nickd32/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nickd32/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/nickd32/replies/page/2/?output_format=md)