Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove wonderplugin.com link from WonderPlugin slider

I am relatively new to the WordPress. I am using free version of the WonderPlugin slider in my site. There is a link coming in the top left corner of the slider showing wonderplugin.com.

Is it possible to remove that link from the free version of the WonderPlugin.

I am using WordPress 4.0 and WonderPlugin Slider Free Version 2.6

like image 518
Mayur Mehta Avatar asked Oct 18 '14 04:10

Mayur Mehta


1 Answers

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.

like image 151
Niraj Chapla Avatar answered Oct 20 '22 20:10

Niraj Chapla