Popups not working in Wordpress

laurashank

New member
HI - I am trying to build some popups for my Wordpress website. I'm using the plugin viewer. Everything else seems to work correctly except the popup shortcode. I've tried both an image and a piece of text, and both just open to a full-screen image with this really long url:

[link-removed]

Here's the shortcode I'm using:

[wr360popup name="QSE10NPT09XXX" width="600px" height="550px" config="/360/QSE10NPT09/360_assets/QSE10NPT09XXX/QSE10NPT09XXX.xml"]<img class="alignright size-medium wp-image-4358" src="[link-removed]/uploads/QSE10NPT09XXX-300x201.jpg" alt="" width="300" height="201" />[/wr360popup]

I've also tried selecting and unselecting the "Don't include lightbox" feature of the plug-in but it didnt make any difference.

What am I doing wrong?

Thanks!

Laura
 

WebSupport

Active member
Great. I can see what's going on.. can you please attach a screenshot of how you are entering the shotcode in admin? I just need to see if it's a standard page or post editor or not.

PS: the problem is that the content filter (add_filter_webrotate_embed_viewer in webrotate360.php) is either not called for this section where you have the shortcode or somehow the setting you mentioned (Don't include lightbox) is still checked and / or you have some page cache plugin that keeps rendering portions of the page (header) as if the checkbox is off.
 

laurashank

New member
Hi - I am entering it into a content box that is part of the page builder, but is still allows for the "text" view:screenshot - popup code.jpg
 

WebSupport

Active member
That's what I thought :) Looks like the page builder plugin is not treating it as content and our filter is not called.

You would just need to insert this snippet into the <head> section of the wordpress page or anywhere else on this page really and it will start working:

Code:
<script language='javascript' type='text/javascript'>function getWR360PopupSkin(){return 'light_clean';}</script>

Will this work?
 
Top