Product:
All WonderPlugin Products
Question:
I am moving my WordPress development site to production. I did a search and replace in the WordPress database, but the images in the carousel slider still link to the old domain.
Recently Asked Questions and WordPress Tutorials
Product:
All WonderPlugin Products
Question:
I am moving my WordPress development site to production. I did a search and replace in the WordPress database, but the images in the carousel slider still link to the old domain.
Product:
Question:
How do I enable the lightbox effect on the slider, as can be seen in this example?
https://www.wonderplugin.com/wordpress-slider/examples/wordpress-slider-with-lightbox-popup-id26/
Product:
Question:
I’m using my site a plugin that allows me to query the database and show results without requiring to code… I can also filter results based on search queries…
I’m using the lightbox in one page that uses such a filter/query. When I set my plugin to reload the entire page, it works fine (though pretty slow since there’s a lot of data), but if I filter using AJAX (i.e. the results are filtered without reloading the page), then the click event on the links that trigger the lightbox are removed… Therefore, after the first search/filter, the images are not clickable anymore…
Is there a way to prevent this (the click event from being removed)?
Answer:
After you use AJAx adding the data, you can call the following JavaScript to re-init the Lightbox:
jQuery(".wplightbox").wonderpluginlightbox();
Update:
If the issue is caused by Ajax loading of the WordPress theme, please view the following tutorial: WordPress lightbox and Ajax loading WordPress themes
This tutorial will guide you how to play mp3 files hosted on Google Drive in WordPress with Wonder Audio Player.
Product:
All WonderPlugin Products
Question:
In the plugin, settings menu, I checked the option "Add plugin js scripts to the footer", but the plugin js files are not added to the WordPress footer.
Answer:
The plugin is using WordPress hook wp_footer to print the plugin js scripts to the footer. wp_footer is one of the most essential theme hooks.
The problem is because your WordPress theme does not call the WordPress function wp_footer() and the hook is not enabled. Please contact your WordPress theme provider and ask for how to support the wp_footer hook.
For more details about wp_footer hook and wp_footer() function, please view: https://codex.wordpress.org/Plugin_API/Action_Reference/wp_footer and https://codex.wordpress.org/Function_Reference/wp_footer.
Product:
WonderPlugin Portfolio Grid Gallery
Tutorial:
This tutorial will guide you how to create WordPress portfolio with categories with WordPress plugin WonderPlugin Portfolio Grid Gallery.
You can view the online demo at WordPress Portfolio with Categories.
Product:
This tutorial will show you how to load image and video list from a json service in the plugin Wonder Portfolio Grid Gallery.
This tutorial will show you how to add a recent post carousel or a category post carousel to your WordPress. The carousel will automatically update itself when you add new posts to your WordPress.
Product
Question
Some of our pages function better with different skins depending on whether we are using desktop or mobile.
Is there a way to use different skins for desktop and mobile?
Answer
You can create two WordPress sliders, one for mobile, one for desktop.
After you have created two sliders, you can add the following code to your post or page. Please be sure to change the ID value in the code to that of your own sliders.
<div id="largescreen"> [wonderplugin_slider id="1"] </div> <div id="smallscreen"> [wonderplugin_slider id="2"] </div>
Then you can add the following CSS code to your WordPress theme style.css file to show the small slider when the screen width is less than 640px:
#largescreen { display: block; } #smallscreen { display: none; } @media (max-width: 640px) { #largescreen { display: none; } #smallscreen { display: block; } }
Product:
Question:
I wonder how can I add a poster image for HTML5 video lightbox?
Answer:
The HTML5 poster image feature is available in WonderPlugin Lightbox version 4.0 and above. If you are using an old version, please upgrade your plugin first.
In the plugin, Lightbox Options menu, there is an option "Video poster image (absolute URL)", you can use the option to specify a poster image for all HTML5 videos.
Or you can use a data tag data-html5videoposter to specify a poster image for the lightbox link, for example:
The HTML code is as following:
<a href="https://www.wonderplugin.com/wp-content/plugins/wonderplugin-lightbox/images/demo-video0.mp4" class="wplightbox" data-webm="https://www.wonderplugin.com/wp-content/plugins/wonderplugin-lightbox/images/demo-video0.webm" data-html5videoposter="https://www.wonderplugin.com/wp-content/uploads/2014/03/gallery.jpg">Video Lightbox</a>