WordPress Flip Carousel with Text

Product:

WonderPlugin Carousel

Question:

I am using the FLIP skin (which is why I bought it) - I really need the title of the post to appear in the carousel.

At the moment it’s used in the title property of the photo when flipped, but I need it to appear below the photo within the carousel, so people know what they are flipping.

Answer:

In the plugin, step 3, Options tab, Content template, add the following line to the end of the existing text:

Continue reading

How to add a slider to WordPress theme and create a full width slider

It's easy to create a full width slider if your WordPress theme has a full width layout. Just adding a responsive full width slider to the page content, the slider will be full width automatically.

But if the WordPress theme has a boxed layout, that's, the page content is not full width, the main wrapper has a maximum width limit and has paddings around it, if you add the slider to the page content, since the page is not full width, by default, the slider is limited to the page and will also be boxed.

This tutorial will guide you how to create a WordPress full width slider even in a WordPress theme of boxed layout. There are 3 steps in this tutorial:

  • Step 1 - Install Wonder Slider
  • Step 2 - Create a full width slider
  • Step 3 - Publish the slider

At the end of this tutorial, we will create a WordPress full width slider as demonstrated in the following page: WordPress Full Width Slider.

We will also discuss how to directly add the slider PHP code to your WordPress theme if it's required in some cases.

  • Additional - Add the slider PHP code to WordPress theme file

Continue reading

Moving WordPress to a New Domain

Products:

WonderPlugin Slider, WonderPlugin Gallery, WonderPlugin Portfolio Grid Gallery, WonderPlugin Carousel and WonderPlugin Audio Player

Tutorial:

When you move your WordPress to a new domain name, you many find the image, video and audio links in the plugins are not updated, they still point to the old domain name. This tutorial will guide you how to update the links and fix the problem.

Continue reading

I upgraded to commercial version, but the free version watermark remains

Product:

All Wonder Plugins

Question:

I purchased the commercial version and have received my membership login password. I downloaded the commercial version and followed the upgrade instructions as posted on your website, however, the free version watermark remains.
Continue reading

Search and replace when moving WordPress site

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.

Continue reading

WordPress Lightbox and AJAX Loading

Product:

WonderPlugin Lightbox

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

Add plugin js files to footer is not working

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.