Title: sliceofpie's Replies | WordPress.org

---

# sliceofpie

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Hide Post] Plugin not working on posts page](https://wordpress.org/support/topic/plugin-not-working-on-posts-page/)
 *  [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/plugin-not-working-on-posts-page/#post-4332440)
 * I think I’ve found a solution, but it involves hacking the plugin.
    You need 
   to replace is_front_page() with is_home() in wp-hide-post.php line 60:
 *     ```
       function wphp_is_front_page() {
       	return is_front_page();
       }
       ```
   
 * Should be:
 *     ```
       function wphp_is_front_page() {
       	return is_home();
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Exclude/Include specific forms](https://wordpress.org/support/topic/excludeinclude-specific-forms/)
 *  Thread Starter [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/excludeinclude-specific-forms/#post-3834584)
 * Woops, I missed that – Thanks for this awesome plugin, Michael!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to display amount of comments per day?](https://wordpress.org/support/topic/how-to-display-amount-of-comments-per-day/)
 *  [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/how-to-display-amount-of-comments-per-day/#post-3732153)
 * You could do a custom MySQL query based on the current post’s ID:
 *     ```
       $comments_today =
       	$wpdb->get_var(
       		"SELECT count(*)
       		 FROM $wpdb->comments
       		 WHERE $wpdb->comments.comment_post_ID = ".$post->ID."
       		 AND DATE($wpdb->comments.comment_date) = CURDATE() "
               );
   
       echo $comments_today;
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] Mobile pages cached but never served (WordPress Mobile Pack)](https://wordpress.org/support/topic/mobile-pages-cached-but-never-served-wordpress-mobile-pack/)
 *  Thread Starter [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/mobile-pages-cached-but-never-served-wordpress-mobile-pack/#post-3748862)
 * This might seem like an obscure problem, but after trying all different suggested
   plugin combinations, I still can’t get a custom Mobile theme to cache with WP-
   SuperCache. Has anyone done this successfully? (Custom, not WP Touch’s built-
   in themes…)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [W3 Total Cache Custom file list "Source file not found"](https://wordpress.org/support/topic/w3-total-cache-custom-file-list-source-file-not-found/)
 *  [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/w3-total-cache-custom-file-list-source-file-not-found/#post-3495586)
 * I’m having the same (or similar) issue with custom files —
 * This is the path I put in the “Custom file list”:
    `wp-content/uploads/userphoto/*`
 * When attempting to do “Custom files export”, w3tc successfully finds all the 
   files in this folder, and lists the correct paths, but says “Source file not 
   found” next to each. I’ve messed with chmoding, chowning, etc, and it does not
   appear to be a permissions problem. I am using Rackspace Cloud Files, and uploading
   attachments and theme files, etc, are working perfectly (thank you!)
 * `wp-content/uploads/userphoto/1.jpg Source file not found.`
 * Any tips? Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Facebook Connect] [Plugin: Simple Facebook Connect] Facebook removing javascript SDK methods](https://wordpress.org/support/topic/plugin-simple-facebook-connect-facebook-removing-javascript-sdk-methods/)
 *  [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-simple-facebook-connect-facebook-removing-javascript-sdk-methods/#post-2901974)
 * I was using a pre-1.0 version (0.25), and it broke in the last 24 hours, upgrading
   will work (I think.)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dynamic Image Resizer] [Plugin: Dynamic Image Resizer] Problems with four letter file extensions?](https://wordpress.org/support/topic/plugin-dynamic-image-resizer-problems-with-four-letter-file-extensions/)
 *  Thread Starter [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-dynamic-image-resizer-problems-with-four-letter-file-extensions/#post-2856961)
 * Perhaps its not 4 letter extensions that are the issue after all – I was able
   to fix this issue by simply adding “jpeg|” to line 18:
 * `if (preg_match('/(.*)-([0-9]+)x([0-9]+)(c)?\.(jpeg|jpg|png|gif)/i',$_SERVER['
   REQUEST_URI'],$matches)) {`
 * Not sure if this is the best solution but fixed my specific problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Editorial Calendar] [Plugin: Editorial Calendar] JSON 500 error… Varnish issue?](https://wordpress.org/support/topic/plugin-editorial-calendar-json-500-error-varnish-issue/)
 *  Thread Starter [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-editorial-calendar-json-500-error-varnish-issue/#post-2620063)
 * Thanks so much zgrossbart and apljdi.
 * I was seeing the 500 error in Firebug. Turns out the larger requests were causing
   PHP to run out of memory, so increasing PHP’s memory solved the issue for us –
   But sounds like the next version will be more efficient, awesome!
 * Thanks again for this awesome plugin, our blog editor cannot live without it (
   and similar plugins do not compare…)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Custom Post Image Sizes Future](https://wordpress.org/support/topic/custom-post-image-sizes-future/)
 *  [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/custom-post-image-sizes-future/#post-1961132)
 * This “Dynamic Image Resizer” is the best/simplest solution I’ve found so far:
   [http://wordpress.org/extend/plugins/dynamic-image-resizer/](http://wordpress.org/extend/plugins/dynamic-image-resizer/)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Custom Post Image Sizes Future](https://wordpress.org/support/topic/custom-post-image-sizes-future/)
 *  [sliceofpie](https://wordpress.org/support/users/sliceofpie/)
 * (@sliceofpie)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/custom-post-image-sizes-future/#post-1961130)
 * I’m looking for the same thing… Basically I need many different image sizes for
   different parts of my site, but I don’t want each image uploaded to be resized
   and saved to so many different sizes, only the ones that are necessary for that
   particular post type…

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