How to remove wonderplugin.com link from WonderPlugin slider

First of all if you want to use free version of the WondePlugin, you should be fine to show the wonderplugin link on the slider. You can avoid that link by using commercial version of plugin.

As far as free version is concern, the link can be removed by the custom css.

On the edit slider screen of the plugin click on Option tab.

Click on Advance Option and put following css in the Custom CSS box.

div.amazingslider-box-1 :nth-child(3) { 
   visibility: hidden;
}

This will hide the link.


CSS

.wonderpluginslider-container{
    display: none
}

JS

jQuery('.wonderpluginslider-container')
    .show()
    .find('a[href="http://www.wonderplugin.com/wordpress-slider/"]')
    .parent().remove();

Thanks for the answers but it doesn't work with the WonderPlugin Grid Gallery Free Version 2.2., which I was looking for when I stumpled over the thread. To remove the watermark from the grid gallery, go to wonderplugin-carousel/engine/wonderplugingridgallery.js and look for

<div style="display:none;position:absolute;top:4px;left:4px;padding:2px

Change the display:block to display:none and the watermark is no longer visible.