Title: Admin ToolBar Missing?
Last modified: January 22, 2018

---

# Admin ToolBar Missing?

 *  Resolved [ruess](https://wordpress.org/support/users/ruess/)
 * (@ruess)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/admin-toolbar-missing-3/)
 * So after [much frustration on my end](https://wordpress.org/support/topic/admin-bar-missing-11/)
   as well as others on this forum, I’ve finally found a solution that a number 
   of us are facing with this plugin, which for many of us, depending up on it’s
   interaction with other plugins/themes, removes the admin toolbar from the front-
   ends of our sites unless a popup is actively being displayed.
 * The issue is an action called in load-popups.php on line 104:\
 * `add_action( 'wp_footer', 'popmake_render_popups', 1 );`
 * Clearly, setting the priority to 1 is questionably effective on more advanced
   sites where many other plugins are likely to also step on its feet. For me, for
   the admin toolbar to show back up again, I had to actually set the priority to
   1000.
 * If you want a nice easy fix to keep so that you don’t have to undo your changes
   with updates of this plugin (if the plugin authors don’t decide to address this
   directly), you can use the following code in your theme’s function.php file:
 *     ```
       //Override footer action and delay it for Popup Maker plugin to not remove admin bar
       add_action( 'wp_head', 'remove_popmake_render_popup_action' );
       function remove_popmake_render_popup_action(){
       	remove_action( 'wp_footer', 'popmake_render_popups', 1 );
       }
       add_action( 'wp_footer', 'popmake_render_popups', 1000 );
       ```
   
    -  This topic was modified 8 years, 4 months ago by [ruess](https://wordpress.org/support/users/ruess/).

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

 *  [Robert Gadon](https://wordpress.org/support/users/yogaman5020/)
 * (@yogaman5020)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/admin-toolbar-missing-3/#post-9895717)
 * Hello [@ruess](https://wordpress.org/support/users/ruess/):
 * I commend your diligence and concern by posting the above ^^^. If you’d like 
   to engage the plugin developer directly on this matter, please repost at [https://github.com/PopupMaker/Popup-Maker/issues](https://github.com/PopupMaker/Popup-Maker/issues).
 * He’s typically very prompt at responding to posts like yours on the GitHub issues
   page.
 * Our plugin is in beta testing right now for upcoming version release 1.7. The
   matter that you write about may already be addressed in the upcoming release.
   The plugin developer can speak more directly to that if you engage him on the
   GitHub issues forum.
 *  Thread Starter [ruess](https://wordpress.org/support/users/ruess/)
 * (@ruess)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/admin-toolbar-missing-3/#post-9932643)
 * Thanks will do!

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

The topic ‘Admin ToolBar Missing?’ is closed to new replies.

 * ![](https://ps.w.org/popup-maker/assets/icon-256x256.gif?rev=3097653)
 * [Popup Maker - Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popup Builder](https://wordpress.org/plugins/popup-maker/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/popup-maker/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/popup-maker/)
 * [Active Topics](https://wordpress.org/support/plugin/popup-maker/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/popup-maker/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/popup-maker/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [ruess](https://wordpress.org/support/users/ruess/)
 * Last activity: [8 years, 4 months ago](https://wordpress.org/support/topic/admin-toolbar-missing-3/#post-9932643)
 * Status: resolved