how to turn off watermark on wonderplugin carousel - javascript

I am using the wonderplugin free version on my website and I would like to get rid of the wonderplugin link in every alternate image. How can I turn it off?
I have tried changing a bunch of codes but they didn't work. All i want to do is remove the link attached on alternate images. Thank You.

Buy Full version to remove this or if you want to use free one try this
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.

Find wonderplugincarousel.js in ..\wonderplugin-carousel-free\wonderplugin-carousel\engine
Find and remove versionmark:"AMFree",
Find showwdefault:true and change to showwdefault:false (be near versionmark:"AMFree",)
It works for me.

Hi I fit this problem like this:
Find wonderplugincarousel.js in
..\wonderplugin-carousel-free\wonderplugin-carousel\engine
Find this.options.mark="WordPress 3D Carousel Trial Version"
Change to this.options.mark=""
I hope it is useful for you

Related

How to change button order in video.js (5.0.0-rc52)?

I'm trying to change the display order in a video.js skin I'm creating. I get all the CSS/LESS stuff (I think), but I got one problem which I'd like to not solve via CSS.
I want the total duration to appear at the very right of the screen. Sadly, the volume button is rendered before, so I can't use float:right; for this.
Is there some API function I missed or some other way to change the order of the buttons?
Thanks
Okay, just in case someone gets stuck like I did. I found the solution. :-)
https://github.com/videojs/video.js/issues/1070

Open image on the current page

So I'm trying to make a gallery and when the user click on a picture I want it to open on top of everything in it's original size.
I only have experience with html and css right now but willing to give JS and jQuery etc a try if necessary. Thank you in advance!
(I didn't provide any code since I don't have a problem with it)
this might help you Shadow Box
See the images.
Update:
fancybox demo

Web image gallery - what has been used creating it?

I have met an interesting image gallery transition surfing the web several times and now I'm interested in how such an elegant solution has been made.
Gallery can be found here: http://nullstuff.com/nullfolio/#/portfolio
The desired effect takes place when toggling between 'Everything' and 'Web Design'.
Could it be made purely with CSS?
Based on the app.js source in the page, it's using the jQuery Quicksand plugin.
To create such elegant gallery JQuery can be used.
You can find several JQuery galleries.
Look at this blog, I found http://vandelaydesign.com/blog/web-development/jquery-image-galleries/
I hope it helps.
First of all
It is not possible to add click events in css.
therefore it is javascript
This is known as an image carousel.
I made my own in jquery.
I can give you the source if you want.
Click on the image to see effect and see the url change and press back button.
You will find the previous page loaded with the effect.Moreover the scrollbar(horizontal) hides after poping which i think is made overflow-x:hidden in css.

Conflicting jQuery plugins

I would first like to say that this site has been incredibly useful for me as I have been learning web coding in my spare time. I have decided to register as I have a specific question I would like to ask.
I am working on my new website and a specific test page (www.owenprescott.com/home.html). I have come across a problem that I am hoping someone can help me with. I have a jQuery plugin that creates a hover effect over my thumbnail images and the inline code is causing an issue (jquery.dirinline.js), the function targets my (li) boxes and says this...
$('.da-thumbs > li').hoverdir();
The problem is that I have a couple of white boxes with project information wrapped in (li) tags. I do not want the white boxes to be effected by the above jQuery function. If you visit my site you will see what the issue is when you hover over the white boxes. I would be very greatfull on some input, either I need to alter the jQuery function or remove the (li) tags from the white info boxes however I am unsure how to get them to display correctly either way.
I hope I have not made this question to confusing and thanks in advance for any advice. Also as this will be my template page if you have any suggestions to improve my code feel free to let me know, I know I still need to remove the default Dreamweaver information.
Your JS can be changed to:
$('.da-thumbs > li > a').parent().hoverdir();
And it should work with the HTML as is. The ones you want to exclude would match li>div, but not li>a, so getting the anchors and then selecting their parents will get only the items you need.
So exclude them from the matched set. Use not() to remove them.
$('.da-thumbs > li').not(".someClassInfoThingy").hoverdir();
or check if it those info blocks will never have a link, you can do
$('.da-thumbs > li:has(a)').hoverdir();

want to make better content display

We are developing a social networking project, in this project we are adding content , e.g. images , video,audio,link(html).
Currently we are using shadowbox.js to show it.But for better and effectiveness we want to use some other better plugin, or want to make own window for showing images and link.
Please help , what is the best solution for this project.
I want to know this is the white board quesion means programmer.stackexchange question or stackoverflow quesion?
Thanks
There are 31 here:
http://www.dreamcss.com/2009/03/31-mind-blowing-collection-of-jquery.html
You should find one or more that suits your needs.
I would suggest using colorbox.js it can be found here :
http://colorpowered.com/
It is easily styled, comes with a pleathera of options including an image slideshow, can handle iFrames, Ajax content, Images, etc, and comes with a few options for styling to begin with.
Made my own div and use that for displaying content :)

Categories