• I’ve really been into popups lately, and evaluated them all. This one is among the top three for sure.

    The good is that different popups can be created and more importantly, the control over how it is displayed is great. Love the idea of themeing.

    On the down side, several menu options are placed in your control panel that shouldn’t be there (under the admin main view). Themeing is a good concept, yet if you purchase the unlimited themes package there are currently NO THEMES. You have to make your own, and the bad thing is you are limited to the theme controls–no custom CSS on the popup wrapper.

    The one unforgivable issue is that to call the popup via a link like a button you must use CSS. Okay I thought. Well, without a proper link it doesn’t work with cell phones. Much of my internet traffic is from phones, so in the end I had to go elsewhere.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Daniel Iser

    (@danieliser)

    @dario – Thank you for the honest feedback and I hope after addressing these issues here, you will consider re rating the plugin. So from top to bottom let me run through these.

    The menu Items under Dashboard are not supposed to show, I can in fact show you the code that should remove them located here https://github.com/PopupMaker/Popup-Maker/blob/master/includes/admin/admin-pages.php#L105.

    If they are still showing this is not normal and likely either a conflict with another plugin or you may have a plugin installed that controls admin menus and that could be forcing them to show.

    For unlimited themes, I don’t believe this is the case, no where do we advertise prebuilt themes at all. Also that extension is free, which is how I’m guessing you got it. If not I will gladly refund it since you can get it and the advanced theme builder for free when you sign up for our newsletter. The purpose of unlimited themes is to be able to customize the look of your popups to suite different needs. Often we find the need to not have all the popups look exactly the same. That is the purpose behind unlimited themes.

    That said currently the way it is set up allows for the concept of prebuilt themes to be added by us or others in the future and it is fully extendable using hooks, filters & custom JS Events.

    Also you can override any of the popmake styling using CSS using a whole slew of classes. Classes include .popmake, .responsive .size-medium etc. Also each popup has a unique ID like #popmake-123. If using unlimited themes you also get a class of popmake-theme-3 etc. We use these overrides on our own site if you need to see it in action. This also makes styling the content much easier to target.

    Lastly the unforgivable one. You can do this in many ways, either adding the class which is pretty simple to do, but also using Custom Selectors which is also CSS but you can target any element on the page without adding extra classes. So for instance adding #menu .item-55 would cause menu item 55 to open that popup. On top of this there is a fully documented jQuery plugin API that can open the popups using JS here https://wppopupmaker.com/docs/overview-popup-maker-javascriptjquery-api.

    That said your comment about links on mobile is not quite clear. I’m assuming that you mean you want a fallback link. You can easily add the class to a link `Hello World. If you want to disable that popup on mobile, either because your not using responsive sizes or responsive content or even the offer doesn’t apply to mobile users there are several ways to do so. If you want to do it in a few clicks you could look at the Advanced Targeting Conditions extension which would allow you to do just that, Disable it on mobile with 1-2 clicks. If you don’t want to purchase that extension you can do it with a few filters and craft your own solution. Using the filter here https://github.com/PopupMaker/Popup-Maker/blob/master/includes/popup-functions.php#L509, you can return false when your on mobile and it won’t display.

    I hope I have addressed all of your concerns here and that you will take some time to reconsider your review. Again I do appreciate your honesty and opinion, but feel many of the issues you described are either not by design, misunderstandings of the products or lack of exposure to how customizable the plugin really is. All of which I will try to address in the future.

    That said we strive to both maintain high reviews, and always work with users who don’t feel its the best it could be to correct those issues in an effort to make it just that. Our aim is not to be top 3, but #1. I appreciate your help in getting us there.

    Thanks again,

    Daniel Iser

    Plugin Author Daniel Iser

    (@danieliser)

    Doing a bit of research I have found a possible solution to the menu items not being removed. You are only the second user to experience this, so testing the solution is quite tough at the moment. If you would be willing to try 2 things and see if they work the fixes are rather simple and just require changing the hook that the remove_submenu_page functions are called on. Currently it is set to admin_head on this line https://github.com/PopupMaker/Popup-Maker/blob/master/includes/admin/admin-pages.php#L111.

    Changing that line to one of the following may fix it.

    add_action( 'admin_menu', 'popmake_remove_admin_subpages', 999 );

    add_action( 'admin_init', 'popmake_remove_admin_subpages' );

    Plugin Author Daniel Iser

    (@danieliser)

    @dario – Just going back through old reviews to find ways we can improve in the upcoming v1.3. Just wanted to see if you have tried v1.2 as it added in new shortcodes that don’t require you to add any CSS classes which was your primary complaint.

    Also to your other points, I never heard back from you on the admin menu items, this has been a problem we haven’t been able to track down as out of 8k+ sites using it only 2-3 have reported this issue, including yours. We are also making new strides in the theme editor and CSS output in general. We are going to be storing all theme code in a single CSS file in upcoming versions, which will make adding your own styles very simple via a textarea that will be added with that changeset.

    If you have any other thoughts now would be a great time to hear them as we start locking down what will be included in v1.3.

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

The topic ‘Plus and Minus’ is closed to new replies.