Can you point me in the right direction to:
1. add a Virtual Tour link properly to the main menu
2. have it open the Vimeo video as a lightbox from anywhere that link is clicked within the site
Thanks in advance!
-Steve
I tried using different lightbox plugins from our standard Easy Fancybox, which did not make any difference. I have disabled all lightbox plugins and using the built-in Fancybox overlay from NextGEN Other options, Lightbox effects. Currently:
so that the site can perform as expected by the visitors.
I wonder if the issue is related to and triggered by NextGEN Gallery. Any help will be much appreciated.
Thanks,
Cemal
]]>I would like to link different pictures to different pages on my site. I use the slideshow as a header, so I deactivated the lightbox effect.
For that I don’t want to use effects like lightbox because I do not want the images to pop-up when clicking on them. They should only lead to a page on my website.
Is there a solution to link the images without them popping up, or changing to the next image?
Thank you very much!
]]>I have loved this plugin and would like to continue the love!
The plugin works find on this site [ shortlink deleted ] but only links to the media file on this site [ shortlink also deleted ].
Other people are having similar problems for over a month now…
Please respond.
Thank you.
Thank you.
Great plugin BTW. Question; can an image open on its own page instead of a gallery? Like the direct link or is there any way to zoom on mobile. I’m trying to zoom the photo once I click on it. This is the default action on WordPress images that are linked directly and viewed on mobile. So instead of opening in lightbox, I want it to go directly to the image so you can zoom, see your sample: https://lh3.googleusercontent.com/V_bO38JnWi_QF4HY7nuaNdm5EG-Z481_Bjuhf0uoPaswhaB_N2Qw8ySzrIAE1MUwl_ltNiUVYqk=s1920
THANKS IN ADVANCE!
]]>I got the plugin running and it work on my main page with my portfolio.
But on the customer pages ( can’t link to them ) with 200 and more pictures the lightbox doens’t work and the pictures open in a window …
I’m using MeowGallery on a full with page.
And is there a way to show the file name on only the customers pages ?
THX Bastian
]]>I am using Jetpack’s Infinite Scroll on my website. The lightbox is working fine on the initially loaded content, but when I load new content onto the page, the lightbox doesn’t appear for those elements, which is very problematic for me.
I love this plugin and discovered this bug lately. I’m not entirely sure if it’s not Jetpack’s fault. Please let me know if there is some workaround to this, or if it’s a known issue!
Thank you!
]]>I had the problem that there was no lightbox effect in my tables that I’ve created in TablePress plugin. I found out that your plugin doesn’t accept shortcodes in the content. This was the reason why there was no lightbox in TablePress tables – they are added to the editor via shortcode [table id=123]
.
I’ve add $content = do_shortcode($content);
in the function add_links_lightbox_selector($content)
in the file includes/class-frontend.php. For videos or galleries this line may need to be added to the other “add lightbox”-functions too.
I just wanted to inform you if you want to fix this.
/**
* Add lightbox to to image links
*
* @param mixed $content
* @return mixed
*/
public function add_links_lightbox_selector( $content ) {
if ( Responsive_Lightbox()->options['settings']['image_links'] || Responsive_Lightbox()->options['settings']['images_as_gallery'] ) {
$content = do_shortcode($content); // accept shortcodes
// search for image-links
preg_match_all( '/<a(.*?)href=(?:\'|")([^<]*?).(bmp|gif|jpeg|jpg|png)(?:\'|")(.*?)>/is', $content, $links );
...
Best regards
saNNNy