Wordpress Pop up Plugin for Mobile?

vinnythejinny

New member
Mar 5, 2008
1,698
11
0
I am looking for a good wordpress pop up plugin that works perfect for mobile devices.

I am not using this for email opt-ins but mainly to display a small notification text/image and link.

Also if the plugin can identify iphone/android or tablet users can display different content that would be even more awesome.

Don't mind paying for it but free is always good ;-)

Any recommendations?
 


I am looking for a good wordpress pop up plugin that works perfect for mobile devices.

I am not using this for email opt-ins but mainly to display a small notification text/image and link.

Also if the plugin can identify iphone/android or tablet users can display different content that would be even more awesome.

Don't mind paying for it but free is always good ;-)

Any recommendations?

Pop up plugin? You could just use a modal/lightbox plugin and then use media queries to target the specific devices (older smart phones, newer smart phones, tablets, etc).
Code:
/* smart phones with screens between 320-480 pixels wide */
@media screen and (min-width : 320px) and (max-width : 480px) {
#yourdiv {position:absolute;z-index:999;}}

and then check useragents to determine the devices OS so you can display content dynamically.
 
i searched around a little bit, everything looks like crap. you are really just better off paying someone who knows jquery/html to code this in, really should only take 5-10 mins and will run much cleaner than any code in, and like rmtag said you can check useragents to do what you need.
 
I hope you get one of those good mobile popups that work so great I cant do anything but close the window to escape it.
 
I hope you get one of those good mobile popups that work so great I cant do anything but close the window to escape it.

If they are using jquerymobile, the programmer can have the popup be shoved down their visitor's face by setting the data-dismissible attribute to false - which essentially means that it cannot be closed by clicking on the area outside the popup.

Certain rogue developers also set the close button to hidden, which more often than not requires you to either consider the popup or close down the whole window.