I am trying to put shortcode into a lightbox using it's html capabilities. I can't find any lightboxes that accept short codes from other plugins. I want an image to open in a lightbox and then be able to use an image magnifier inside the lightbox. My short code is
[magny image="http://www.xxx.org/wp-content/uploads/2014/05/201316-260x300.jpg" title="" description="" align="center" click="1" scroll_zoom="1" small_image="" canvas_mode="1" maxwidth="500px" zoom="1" dia="200px" skin="new-im-frame-simple,new-title-off,new-description-below,new-slider-off,new-im-magnifier-simple" ]
and i'm attempting to put that in html section of the lightbox with :
<html>
<?php echo do_shortcode('[above shortcode]'); ?>
</html>
I can get this to work when it's a simple short code that doesn't have options to it. But the one above or any other that include options break.
I probably don't know about code as much as I need to attempt this but am i on the right track?