wunch
Forum Replies Created
-
Awesome. It’s working now, thanks! 🙂
Forum: Plugins
In reply to: [Constant Contact Forms] ctct-opt-in markup closing tags out of orderSure. Check out the footer on innovation.utdallas.edu
If you view the source in Firefox, it will clearly show you the misplaced /p tag in red.
(I also copied that whole aside section into Sublime Text and did some manual prettifying / indenting of the code. Everything else checks out except for those closing tags switched around.)
@christianglingener thanks. Yes, I can confirm that the development version that you linked fixes this issue for me.
Looking at your code, I think the problem here is that you’re loading the ‘toolset_admin_notices_manager’ user_meta as a single value (with the get_user_meta ‘true’ parameter), but then trying to assign a value to an array index on it, which will fail if it doesn’t exist because the return value of get_user_meta is not an array.
manager.php lines 264-265:
$user_settings = get_user_meta( $user_id, self::ID, true ); $user_settings[ self::OPTION_FIELD_DISMISSED_NOTICE ][ $notice_id ] = true;I think the easy fix would be to change line 264 to
$user_settings = get_user_meta( $user_id, self::ID, false );right?
- This reply was modified 9 years, 2 months ago by wunch.
Forum: Plugins
In reply to: [User Role Editor] After recent plugin update no users are showingHaving the exact same issue on multisite. It’s definitely a URE issue. I’ve tested this with all other plugins deactivated, and only URE 4.31.1 activated, on WP 4.6.1.
To clarify:
With URE deactivated, both super-administrators and local administrators can see all users in the users table, as expected.
With URE activated, super-administrators can see all users in the users table, but local administrators cannot. The user count is listed correctly, but some users are not showing up in the table. Specifically, any users with the administrator role for that site are missing. Users with other roles show up fine.
Also, possibly related: when the network setting “Enable administration menus: Plugins” is checked and a local admin activates the URE plugin for their site, the URE plugin disappears from that site’s plugin list for local admins (super-admins can still see it), which prevents that local admin from subsequently deactivating URE for their site.
I say “possibly related” because both of these issues seem to be that local admins cannot see certain items in admin tables that they should be able to see.
Forum: Plugins
In reply to: [WP Twitter Feeds] SSL avatarsSimilar issue. On an https site, using this plugin with avatars shown results in a “triangle” instead of “padlock” icon for site security in the browser. This is because the avatars are rendered from an http src instead of https, and so the site “contains unencrypted elements”.
Any way to fix this?
Forum: Fixing WordPress
In reply to: Blog Hidden – can no longer access through dashboardIf you hover your mouse over the word “hidden” in “My Blogs”, then the option to make it visible will appear. At least, that’s what worked for me.