How to add link to WonderPlugin Slider description

Question:

What I’m trying to do is add a link to the slider where the description is, I need like a learn more link.

Answer:

To add a link in the description, you can directly enter HTML code

For example, you can enter the following text to the description field:

This is the description of WonderPlugin Slider. <br /><a href="https://www.wonderplugin.com" target="_blank">Learn More</a>

In the above code, <br /> adds a line break to the description, the a tag adds a link to the description.

You can also use css to specify the font color and size of the link, for example:

This is the description of WonderPlugin Slider. <br /><a href="https://www.wonderplugin.com" target="_blank" style="color:#990000;font-size:16px;">Learn More</a>

A demo is as following:

Multiple jQuery loaded in WordPress

Question:

I have a website in progress, I used Wonderplugin for WordPress and as I came across on the development, I cannot get it working.

I already uploaded images and configured everything on WordPress.

I also copied the shortcode to the php page that I am working on. But the carousel does not show up.

Answer:

Normally this problem is that there are multiple jQuery files added to your WordPress.

You can view the HTML source code of your webpage, and check how many jQuery are added in your website. In Google Chrome, you can view the HTML source code with menu View -> Developer -> View Source, then search text "jquery" in the source code.

There should be only one jQuery in the webpage, which is added by the WordPress system.

Some plugins add their own jQuery to the website, and this is not correct. A plugin should always use the system installed jQuery, and the js files added from a plugin will be added after the system jQuery.

A jQuery will destroy all other jQuery functions that are added before it. So if a plugin adds its own jQuery, it may destroy other jQuery functions.

To fix the issue:

In the plugin, Setting menu, you can try to check the option "Add plugin js scripts to the footer". This option will place the plugin js file to the footer and will fix the problem in most cases.

If the above option is not working, you can try to disable all other plugins and see whether the WonderPlugin works. If it works, you can then enable the plugins one by one, and find the plugin that has caused the problem.

If WonderPlugin is still not working after you have disabled all other plugins, then the extra jQuery may have been added manually to the theme or the page, you need to find the code and remove it.

Change Skin of WordPress Slider

Question:

I have a problem with my Slider plugin on a site I am working on.

I built a slider. I have played around with different skins on the slider. When I changed skins however, the change does not show on the live webpage.

If I remade the same slider: completely started over, using same photos and the vertical skin. It looks perfect as you can see on site.

My problem is I don't seem to be able to switch skins after I have made a slider and make the slider look right on the website. It seems as the options are not resetting allowing me to remake the slider.

Answer:

After you make change to the slider and before test it on your webpage:

1. Clear caches of your WordPress if you have a cache plugin installed.
2. Clear caches of your web browser before re-testing.

Position WordPress Slider on Webpage

Question:

So I fell in love with the free version of your Wonder Plugin Slider so I decided to upgrade to the commercial version. Now that I've deployed it on a site I'm working on for my company, I'm having trouble getting it to display properly on my page.

Specifically, I'm trying to create a space between your plugin and another plugin I'm using to display some logos. I've tried entering blank lines, tried the
tags, but nothing seems to work.

I'm not sure if this is a WordPress problem or something you can help with, but a response would be very much appreciated. Thanks.

Very Respectfully

Answer:

You can add the following HTML code between the two plugins, this will create a gap between them.

<div style="margin-top:100px;"></div>

You can change the margin top to a different value.