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:16

These solutions are all updated and solved by WonderPlugin admins. But here is the new solution for WonderPlugin Portfolio Grid Gallery (Version 11.8):

open: engine\wonderplugingridlightbox.js

on line 66 : title='WordPress Gallery'><div style='display:block;width:180px;height:20px;text-align:center;border-radius:3px;-moz-border-radius:3px

Change display:block to display:none

And here we go!

查看更多
孤傲高冷的网名
3楼-- · 2019-04-27 06:17

CSS

.wonderpluginslider-container{
    display: none
}

JS

jQuery('.wonderpluginslider-container')
    .show()
    .find('a[href="http://www.wonderplugin.com/wordpress-slider/"]')
    .parent().remove();
查看更多
相关推荐>>
4楼-- · 2019-04-27 06:21

A simple solution

div.amazingcarousel-image :nth-child(3) { visibility: hidden;}

because free version link is the 3rd child div in parent div with class- amazingcarousel-image

查看更多
神经病院院长
5楼-- · 2019-04-27 06:27

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.

查看更多
Deceive 欺骗
6楼-- · 2019-04-27 06:29

Open engine\wonderplugingallery.js and search for var commonOptions. Then change

var commonOptions = {
    /* other options */
    ...
    fv: true,
    ...
}

to

var commonOptions = {
    /* other options */
    ...
    fv: false,
    ...
}

and the plugin will take care rest(no custom CSS and JS headache).

I have checked it with Version 8.6 and it's working.

查看更多
孤傲高冷的网名
7楼-- · 2019-04-27 06:31

search for this.options.watermarktext=this.options.vermk; and replace this.options.vermk with nil

查看更多
登录 后发表回答