Title: hand_coding's Replies - page 2 | WordPress.org

---

# hand_coding

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

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

 Search replies:

## Forum Replies Created

Viewing 13 replies - 16 through 28 (of 28 total)

[←](https://wordpress.org/support/users/hand_coding/replies/?output_format=md) [1](https://wordpress.org/support/users/hand_coding/replies/?output_format=md)
2

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/#post-4169975)
 * Not really. I found out that this function was the cause, then I replaced it 
   with the plugin. It turned out the plugin works well without troubling wysija.
   
   Is your function.php pristine or did you add some custom functions? Did you make
   some test with all plugins disabled except wysija?
 * Fabrice
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/#post-4169728)
 * The plugin works just fine 😛
    [http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/](http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/#post-4169712)
 * I’ve found the culprit.
    It’s a function one add to function.php to prevent users
   to access the dashboard. It goes like this:
 *     ```
       add_action('admin_init', 'no_mo_dashboard');
       function no_mo_dashboard() {
         if (!current_user_can('manage_options') && $_SERVER['DOING_AJAX'] != '/wp-admin/admin-ajax.php') {
         wp_redirect(home_url()); exit;
         }
       }
       ```
   
 * You can find it [here](http://werdswords.com/howto-disable-access-to-the-wordpress-dashboard-for-non-admins/),
   
   It works like a charm but obviously ruins the wysija mechanism (and probably 
   others). I have no idea on how to modify this hook to make it work with wysija.
   I will try to get in touch with Drew Jaynes who also developed [a wp plugin for this](http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/).
 * Fabrice
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/oops-there-is-a-problem-with-this-form/#post-4169670)
 * Safari on Mac is a bit more talkative:
 *     ```
       Oops! There is a problem with this form:
       textStatus:parsererror
       errorThrown:SyntaxError: Unexpected token '<'
       responseText:
       ```
   
 * Fabrice
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Menu Images] [Plugin: Custom menu images] create new menu forgets previous menu images](https://wordpress.org/support/topic/plugin-custom-menu-images-create-new-menu-forgets-previous-menu-images/)
 *  [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years ago](https://wordpress.org/support/topic/plugin-custom-menu-images-create-new-menu-forgets-previous-menu-images/#post-1827971)
 * Thanks anabelle.
    I will try it ASAP…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Menu Images] [Plugin: Custom menu images] create new menu forgets previous menu images](https://wordpress.org/support/topic/plugin-custom-menu-images-create-new-menu-forgets-previous-menu-images/)
 *  [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-custom-menu-images-create-new-menu-forgets-previous-menu-images/#post-1827937)
 * As an aside, style rules shouldn’t be written if the Custom Menu doesn’t display
   thumbnails…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Menu Images] [Plugin: Custom menu images] create new menu forgets previous menu images](https://wordpress.org/support/topic/plugin-custom-menu-images-create-new-menu-forgets-previous-menu-images/)
 *  [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-custom-menu-images-create-new-menu-forgets-previous-menu-images/#post-1827936)
 * Hi rcain & Anabelle,
    Thanks rcain, I tested your mods and it seems to fix the“
   disappearing images problem” with multiple Custom Menus. For the css part (bottom
   of the page), I keep Anabelle’s choice to style the ‘li’ element, not the ‘a’
   itself.
 * Thanks again; problem solved in my case…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Global Search] [Plugin: Multisite Global Search] Global search and Private posts](https://wordpress.org/support/topic/plugin-multisite-global-search-global-search-and-private-posts/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-multisite-global-search-global-search-and-private-posts/#post-1973631)
 * Great! 🙂
    Thanks to you!
 * Fabrice
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Table prefix question with multisite setup](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/#post-1963562)
 * 😛
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Table prefix question with multisite setup](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/#post-1963559)
 * I don’t think it’s bad coded; it’s just not flexible…
    “list-all-posts” was designed
   for WordPress-mu and was, at the time, a free gift from WPMU Dev along with “
   list-all”, designed to retrieve every blogs in a WP-mu install. Those are nowhere
   to be found now, it seems…
 * Lucky you are if you found “plenty” of WP plugins for this, because I did a lot
   of search… 🙂
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Table prefix question with multisite setup](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/#post-1963483)
 * Well… I was unable to find a way to implement your suggestion in a query like`"
   SELECT post_content FROM " . "wp_" . $blogid . "_posts" …` so I ended up with
   adding a variable based on the blog id: `$wp_bid = $blogid == 1 ? "wp" : "wp_".
   $blogid;` so the query is now:`"SELECT post_content FROM " . $wp_bid . "_posts"…`.
 * It works nicely.
    Thanks again…
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Table prefix question with multisite setup](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/table-prefix-question-with-multisite-setup/#post-1963434)
 * Hi Curtiss,
    I’m not sure I fully understand the ins and outs of your suggestion
   but I’ll try…
 * Thanks a lot…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to style Private posts ?](https://wordpress.org/support/topic/how-to-style-private-posts/)
 *  Thread Starter [hand_coding](https://wordpress.org/support/users/hand_coding/)
 * (@hand_coding)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/how-to-style-private-posts/#post-1949998)
 * Yep! You got it…
    Thank you very much!

Viewing 13 replies - 16 through 28 (of 28 total)

[←](https://wordpress.org/support/users/hand_coding/replies/?output_format=md) [1](https://wordpress.org/support/users/hand_coding/replies/?output_format=md)
2