• One of my customers needed a popup, and it had to be done ASAP. Hustle did the job pretty well with no need for custom CSS, more options than I expected.

    I would have given it a 5 star rating, except that I couldn’t configure the popup to not appear on phone devices (at customer’s request.)

    I added the following CSS to suppress the popup on mobile (used shotgun approach).

    @media (max-width:767px) {
    .wph-modal.wph-modal–simple ,
    .wph-modal–content,
    .wph-modal–image_right {
    hidden:true!important;
    max-height:0px!important;
    max-width:0px!important;
    overflow:hidden;
    }

    .wph-modal,
    .wph-modal–close ,
    .wph-modal–close a,
    .i-close {
    hidden:true!important;
    max-height:0px!important;
    max-width:0px!important;
    overflow:hidden;
    }

    .wph-modal.wph-modal–simple,
    .wph-modal–content,
    .wph-modal–wrap {
    hidden:true!important;
    max-height:0px!important;
    max-width:0px!important;
    overflow:hidden;
    }
    }

Viewing 1 replies (of 1 total)
  • Plugin Support Laura – WPMU DEV Support

    (@wpmudev-support8)

    Hey @michael59802,

    Hope you’re well.

    Thank you for your feedback and stars. Actually, there are “POP-UP DISPLAY CONDITIONS” at popup settings and you can find “Only on mobile devices” or “Not on mobile devices” conditions. I am assuming “Not on mobile devices” should solve your issue without adding any custom CSS. Did you try it?

    Cheers,
    Oguz

Viewing 1 replies (of 1 total)

The topic ‘Pretty Good’ is closed to new replies.