How to remove wonderplugin.com link from WonderPlu

2019-04-27 05:58发布

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

11条回答
疯言疯语
2楼-- · 2019-04-27 06:31

Good way to purchase the plugin and it is removed automatically but in free version you can add the following css to make it invisible.

div.amazingslider-box-1 div:nth-child(3) { 
   visibility: hidden !important;
   width:0 !important;
   height: 0 !important;
   padding: 0 !important;
   overflow: hidden !important;
}
查看更多
疯言疯语
3楼-- · 2019-04-27 06:31

You have to search for: wpositioncssdefault:"display:block;position:absolute;bottom:8px;right:8px; line 162 in the wonderplugincarousel.js and then you change display:block; to display:none;. Cheers!

查看更多
乱世女痞
4楼-- · 2019-04-27 06:32

Open your style.css and then put the code below

div.html5gallery-container-0
div.html5gallery-box-0
div.html5gallery-elem-0
div.html5gallery-elem-img-0
a{
  visibility: hidden;
}
查看更多
欢心
5楼-- · 2019-04-27 06:34

There is no style.css file. There are only wonderpluginslider.css and wonderpluginsliderengine.css So do you know where the file and code?

Also i inspected that element on my internet browser and i saw this codes:

<div class="amazingslider-text-box-1" style="display: block;">

    <div class="amazingslider-text-wrapper-1" style="width: 100%; height: auto; position: absolute; left: 0px; bottom: 0px; margin-bottom: 0px;"></div>

</div>
<div style="display:block;position:absolute;top:6px;left:6px;font:12px A…or:#fff;opacity:0.9;filter:alpha(opacity=90);cursor:pointer;"

    <a target="_blank" title="Responsive jQuery Slider" style="text-decoration:none;font:12px Arial,Tahoma,Helvetica,sans-serif;color:#333;" href="http://wonderplugin.com/wordpress-slider/">

        WordPress Slider Free Version
    </a>

</div>

"Wonder Plugin" (Free Wordpress Slider Plugin)

查看更多
放我归山
6楼-- · 2019-04-27 06:36

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.

查看更多
登录 后发表回答