Title: iwildeachit's Replies | WordPress.org

---

# iwildeachit

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Remove post date from posts in a specific category](https://wordpress.org/support/topic/remove-post-date-from-posts-in-a-specific-category/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years ago](https://wordpress.org/support/topic/remove-post-date-from-posts-in-a-specific-category/#post-6122852)
 * Figured it out with CSS :\
 *     ```
       .category-policies .post-category, .category-policies .post-date {
       display: none; }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Display Parent Category Posts Only](https://wordpress.org/support/topic/display-parent-category-posts-only/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years ago](https://wordpress.org/support/topic/display-parent-category-posts-only/#post-6084558)
 * I tried multiple snippets of code, but this is perfect. It worked and is a custom
   function that I can migrate from site to site! Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Social Links not displaying AND options tree format is broken](https://wordpress.org/support/topic/social-links-not-displaying-and-options-tree-format-is-broken/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/social-links-not-displaying-and-options-tree-format-is-broken/#post-5715851)
 * I haven’t figured out which plugin is causing it, but I disabled all plugins 
   and it’s now functioning correctly.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Social Links not displaying AND options tree format is broken](https://wordpress.org/support/topic/social-links-not-displaying-and-options-tree-format-is-broken/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/social-links-not-displaying-and-options-tree-format-is-broken/#post-5715849)
 * Thank you for taking the time to respond, but unfortunately neither of the posts
   resolved my problem.
 * I tried replacing the option-tree with the latest version, and even downgrading
   to a previous version.
 * Just bumping in case anyone can offer assistance.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Social Links not displaying AND options tree format is broken](https://wordpress.org/support/topic/social-links-not-displaying-and-options-tree-format-is-broken/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/social-links-not-displaying-and-options-tree-format-is-broken/#post-5715672)
 * Forgot to add a screenshot of the Options Tree problem: [http://i.imgur.com/O7mRvSk.png](http://i.imgur.com/O7mRvSk.png)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Display text on empty category page?](https://wordpress.org/support/topic/display-text-on-empty-category-page/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/display-text-on-empty-category-page/#post-5141904)
 * Worked like a charm.
    Thank you very much!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Display text on empty category page?](https://wordpress.org/support/topic/display-text-on-empty-category-page/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/display-text-on-empty-category-page/#post-5141867)
 * I got the category template working by clearing my browser cache, now I am having
   trouble putting the code together..
 * In my previous website’s theme, I use
 *     ```
       <?php if ( is_category(jobs) ) { ?>
       <h1><?php esc_html_e(' &nbsp;No Job Openings','TheStyle'); ?></h1>
       	<p><?php esc_html_e(' &nbsp;The library has no job openings at this time. Please check back later.&nbsp;','TheStyle'); ?></p>
       ```
   
 * but I don’t know how to achieve that with the code used in Hueman. Hopefully 
   someone can help me integrate this. The code for Hueman is:
 *     ```
       <div class="post-list group">
       				<?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
       				<?php get_template_part('content'); ?>
       				<?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
       			</div><!--/.post-list-->
   
       			<?php get_template_part('inc/pagination'); ?>
   
       		<?php endif; ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Display text on empty category page?](https://wordpress.org/support/topic/display-text-on-empty-category-page/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/display-text-on-empty-category-page/#post-5141855)
 * jobs is the category slug. I do not use any custom post types at the moment.
   
   I may have to clear my cache/cookies and try again.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Display text on empty category page?](https://wordpress.org/support/topic/display-text-on-empty-category-page/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/display-text-on-empty-category-page/#post-5141851)
 * Just naming the file Hueman uses to display categories would be helpful. I’ve
   tried editing the archive.php file and making a new category-jobs.php file in
   my child theme. Neither changes the category page.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Holding F5 causes 100% CPU load (Apache)](https://wordpress.org/support/topic/holding-f5-causes-100-cpu-load-apache/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [12 years ago](https://wordpress.org/support/topic/holding-f5-causes-100-cpu-load-apache/#post-4901526)
 * This is for a businesses Intranet page that has between 30-70 users on it at 
   any given time. Staff access their schedules, handbooks and all other staff resources
   here. From what I have read on ServerFault, the Ubuntu forums, and various other
   forums, holding f5 should increase the load, but should not max it to 100%.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Holding F5 causes 100% CPU load (Apache)](https://wordpress.org/support/topic/holding-f5-causes-100-cpu-load-apache/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [12 years ago](https://wordpress.org/support/topic/holding-f5-causes-100-cpu-load-apache/#post-4901507)
 * Thanks for the recommendation, but I asked there without a single reply in 3 
   days 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] Only caching the index page?](https://wordpress.org/support/topic/only-caching-the-index-page/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [12 years ago](https://wordpress.org/support/topic/only-caching-the-index-page/#post-4896158)
 * Do you have a private email where I could message you about this? It is a private
   intranet site, so I would have to manually allow your IP address access to the
   server.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] Updating content issue](https://wordpress.org/support/topic/updating-content-issue/)
 *  [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [12 years ago](https://wordpress.org/support/topic/updating-content-issue/page/2/#post-4894927)
 * My problem was a file permission error within the /cache/all folders. Sorry if
   I hijacked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] Updating content issue](https://wordpress.org/support/topic/updating-content-issue/)
 *  [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [12 years ago](https://wordpress.org/support/topic/updating-content-issue/page/2/#post-4894924)
 * I am having a similar problem as Kramarz, except I am not combining css and js.
 * I only have:
    Cache: Enabled New Post: Clear all cache files when a post or page
   is published Gzip: Reduce the size of files sent from your server
 * checked on my install.
 * Site visitors are still able to view posts that have been deleted until I clear
   my /cache/all manually.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hide page title on one page in twenty fourteen theme](https://wordpress.org/support/topic/hide-page-title-on-one-page-in-twenty-fourteen-theme/)
 *  Thread Starter [iwildeachit](https://wordpress.org/support/users/terryit3/)
 * (@terryit3)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/hide-page-title-on-one-page-in-twenty-fourteen-theme/#post-4636228)
 * This is exactly what I needed.
 * I have a child theme in place 🙂

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

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