Title: wunch's Replies | WordPress.org

---

# wunch

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Feed Them Social - Social Media Feeds, Video, and Photo Galleries] ReferenceError: Query is not defined](https://wordpress.org/support/topic/referenceerror-query-is-not-defined/)
 *  Thread Starter [wunch](https://wordpress.org/support/users/wunch/)
 * (@wunch)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/referenceerror-query-is-not-defined/#post-9543509)
 * Awesome. It’s working now, thanks! 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Constant Contact Forms] ctct-opt-in markup closing tags out of order](https://wordpress.org/support/topic/ctct-opt-in-markup-closing-tags-out-of-order/)
 *  Thread Starter [wunch](https://wordpress.org/support/users/wunch/)
 * (@wunch)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/ctct-opt-in-markup-closing-tags-out-of-order/#post-9543098)
 * Sure. Check out the footer on [innovation.utdallas.edu](https://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.)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Toolset Types - Custom Post Types, Custom Fields and Taxonomies] Dashboard toolset-notice not dismissable](https://wordpress.org/support/topic/dashboard-toolset-notice-not-dismissable/)
 *  Thread Starter [wunch](https://wordpress.org/support/users/wunch/)
 * (@wunch)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/dashboard-toolset-notice-not-dismissable/#post-8841708)
 * [@christianglingener](https://wordpress.org/support/users/christianglingener/)
   thanks. Yes, I can confirm that the development version that you linked fixes
   this issue for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Toolset Types - Custom Post Types, Custom Fields and Taxonomies] Dashboard toolset-notice not dismissable](https://wordpress.org/support/topic/dashboard-toolset-notice-not-dismissable/)
 *  Thread Starter [wunch](https://wordpress.org/support/users/wunch/)
 * (@wunch)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/dashboard-toolset-notice-not-dismissable/#post-8836293)
 * 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](https://wordpress.org/support/users/wunch/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] After recent plugin update no users are showing](https://wordpress.org/support/topic/after-recent-plugin-update-no-users-are-showing/)
 *  [wunch](https://wordpress.org/support/users/wunch/)
 * (@wunch)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/after-recent-plugin-update-no-users-are-showing/#post-8643332)
 * Having 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Twitter Feeds] SSL avatars](https://wordpress.org/support/topic/ssl-avatars/)
 *  [wunch](https://wordpress.org/support/users/wunch/)
 * (@wunch)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/ssl-avatars/#post-5812476)
 * Similar 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog Hidden – can no longer access through dashboard](https://wordpress.org/support/topic/blog-hidden-can-no-longer-access-through-dashboard/)
 *  [wunch](https://wordpress.org/support/users/wunch/)
 * (@wunch)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/blog-hidden-can-no-longer-access-through-dashboard/#post-1097299)
 * If 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.

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