Title: clickit's Replies | WordPress.org

---

# clickit

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Upgrade to 3.0 problem: can’t edit pages from Dashboard](https://wordpress.org/support/topic/upgrade-to-30-problem-cant-edit-pages-from-dashboard/)
 *  [clickit](https://wordpress.org/support/users/clickit/)
 * (@clickit)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/upgrade-to-30-problem-cant-edit-pages-from-dashboard/page/3/#post-1543279)
 * Deleting the ‘Google Analytics Dashboard’ plugin by Carson McDonald eventually
   resolved this issue for me.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sort posts in page template by category, then title](https://wordpress.org/support/topic/sort-posts-in-page-template-by-category-then-title/)
 *  Thread Starter [clickit](https://wordpress.org/support/users/clickit/)
 * (@clickit)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/sort-posts-in-page-template-by-category-then-title/#post-1498402)
 * **vtxyzzy**,
 * You may just have made my week. This has worked perfectly! Just a few minor modifications
   on my side to get pagination back up and running.
 * Many thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Missing $comment_post_ID on template page](https://wordpress.org/support/topic/missing-comment_post_id-on-template-page/)
 *  [clickit](https://wordpress.org/support/users/clickit/)
 * (@clickit)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/missing-comment_post_id-on-template-page/#post-1086555)
 * **preaxz, you are a star my friend.**
    I was experiencing the white screen of
   death with comments on a template page after submitting the form. You’re solution
   seems to work just fine.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can’t access WP-Admin – blank white screen](https://wordpress.org/support/topic/cant-access-wp-admin-blank-white-screen/)
 *  [clickit](https://wordpress.org/support/users/clickit/)
 * (@clickit)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/cant-access-wp-admin-blank-white-screen/#post-966998)
 * Have you modified your functions.php file at all? I had the same problem with
   the ‘dreaded white screen’ when creating new posts and after logging out. My 
   problem lay with the following code which limits the number of words displayed
   in excerpts.
 *     ```
       <?php
       function string_limit_words($string, $word_limit)
       {
         $words = explode(' ', $string, ($word_limit + 1));
         if(count($words) > $word_limit)
         array_pop($words);
         return implode(' ', $words);
       }
       ?>
       ```
   
 * If anyone has used the same code and is encountering a white screen, removing
   it from functions.php should get your admin back.
 * Any suggestions welcomed for incorporating this code safely or other methods 
   of limiting excerpts.

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