uptree
Forum Replies Created
-
Forum: Plugins
In reply to: [Co-Authors Plus] Changelog??+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.
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
In reply to: [Co-Authors Plus] Authors missing in adminI’m also experiencing this. Working on debugging now and will update here if I find anything useful.
Forum: Plugins
In reply to: [Register IPs] Editors seem to be able to see IPsHi 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, 3 months ago by uptree.
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
In reply to: Modify Categories description text in wp-adminI 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
In reply to: Modify Categories description text in wp-adminWorks perfectly, Michael! Thank you so much for taking the time to help.
Forum: Hacks
In reply to: Modify Categories description text in wp-adminYeah, 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
In reply to: Modify category description text in adminOops – 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
In reply to: [WP Hide Dashboard] WP User AvatarA 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.