Title: uptree's Replies | WordPress.org

---

# uptree

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

 *   [Profile](https://wordpress.org/support/users/uptree/)
 *   [Topics Started](https://wordpress.org/support/users/uptree/topics/)
 *   [Replies Created](https://wordpress.org/support/users/uptree/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/uptree/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/uptree/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/uptree/engagements/)
 *   [Favorites](https://wordpress.org/support/users/uptree/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: [[Co-Authors Plus] Changelog??](https://wordpress.org/support/topic/changelog-188/)
 *  [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/changelog-188/#post-15037170)
 * +1 I always wonder if I’m just not able to find it. Every time there’s an update,
   I go searching for the changelog, but no luck.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Members - Membership & User Role Editor Plugin] Can’t dismiss plugin ratings nag](https://wordpress.org/support/topic/cant-dismiss-plugin-ratings-nag/)
 *  [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/cant-dismiss-plugin-ratings-nag/#post-13467727)
 * To add to this, I am able to dismiss it, but it comes back like every other day.
   I’m so tired of developers bloating up the admin with this kind of crap. If I
   close it, it should be gone for good.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Authors missing in admin](https://wordpress.org/support/topic/authors-missing-in-admin/)
 *  [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/authors-missing-in-admin/#post-13412372)
 * I’m also experiencing this. Working on debugging now and will update here if 
   I find anything useful.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Register IPs] Editors seem to be able to see IPs](https://wordpress.org/support/topic/editors-seem-to-be-able-to-see-ips/)
 *  Thread Starter [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/editors-seem-to-be-able-to-see-ips/#post-11195579)
 * Hi Ipstenu,
 * You’re absolutely correct. I should have investigated and tested further before
   posting here. Thanks for your help.
    -  This reply was modified 7 years, 6 months ago by [uptree](https://wordpress.org/support/users/uptree/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ReCaptcha Integration for WordPress] Solution if WordPress ReCaptcha Integration not working](https://wordpress.org/support/topic/solution-if-wordpress-recaptch-not-working/)
 *  [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/solution-if-wordpress-recaptch-not-working/#post-6760010)
 * Recaptcha was refusing to load/display in all versions of IE when using SSL. 
   This was the only fix that worked for me! Thanks!
 * I would suggest enqueuing the the script (in your functions.php) rather than 
   manually placing it in the head:
 * `wp_enqueue_script( 'my-google-nocaptcha', 'https://www.google.com/recaptcha/
   api.js' );`
 * I’m pretty new to WordPress/PHP, so I would greatly appreciate any insight as
   to whether or not this not a good idea. Am I calling the script twice now?
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Modify Categories description text in wp-admin](https://wordpress.org/support/topic/modify-categories-description-text-in-wp-admin/)
 *  Thread Starter [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/modify-categories-description-text-in-wp-admin/#post-7098807)
 * I just wanted to add that I removed the class and wrapped the remaining function
   in a conditional to (1) test if we’re in the admin and (2) test if we’re on the
   admin page that actually has this text by testing if the $current_screen’s taxonomy
   matches the string ‘category’:
 *     ```
       global $current_screen;
       function current_admin_screen_category( $current_screen ) {
       $tax = $current_screen->taxonomy;
       if ( is_admin() && ('category' == $tax){
           // function from Michael's answer goes here
       }
       add_action( 'current_screen', 'current_admin_screen_category' );
       ```
   
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Modify Categories description text in wp-admin](https://wordpress.org/support/topic/modify-categories-description-text-in-wp-admin/)
 *  Thread Starter [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/modify-categories-description-text-in-wp-admin/#post-7098791)
 * Works perfectly, Michael! Thank you so much for taking the time to help.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Modify Categories description text in wp-admin](https://wordpress.org/support/topic/modify-categories-description-text-in-wp-admin/)
 *  Thread Starter [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/modify-categories-description-text-in-wp-admin/#post-7098713)
 * Yeah, I’m hoping someone can help me figure out how to filter it so the changes
   won’t be overwritten when WP updates.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Modify category description text in admin](https://wordpress.org/support/topic/modify-category-description-text-in-admin/)
 *  Thread Starter [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/modify-category-description-text-in-admin/#post-7098642)
 * Oops – I see now that this question should be in the hacks subforum. I will post
   it there. This post can be closed/deleted.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Hide Dashboard] WP User Avatar](https://wordpress.org/support/topic/wp-user-avatar/)
 *  Thread Starter [uptree](https://wordpress.org/support/users/uptree/)
 * (@uptree)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/wp-user-avatar/#post-6988722)
 * A quick follow-up: the WP User Avatar plugin forces the “edit_posts” capability
   in order to allow image uploading, and I see the WP Hide Dashboard is based on
   the edit_posts capability, so there’s the conflict.

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