Code

Discussion on Ultimate Smart Slider - Wordpress

Discussion on Ultimate Smart Slider - Wordpress

Cart 87 sales

castleplugins supports this item

Supported

This author's response time can be up to 1 business day.

25 comments found.

Hello, I just bought your plugin and I need help with 2 questions please:

1 – How to add a link in the images (the same link in all the images)? 2 – How to make stop rotate on hover?

Thank you very much

Hi
1) if it is a static link you can add it manually in the wp_ultimate_smart_slider/index.php
Just find this peace of code:

<img src=" 
</pre" />
and add something like this:
<pre>
<img onclick="location.href=my_url.html" src=" 
</pre" />
<br />
<br />
2) Make sure to add that code after the page loads, something like this:
<pre>
$( document ).ready(function() {
$('body').on('mouseenter', '.as_slider', function(){
    if($(this).find('.as_play').hasClass('as_pause')){
        $(this).find('.as_play').trigger('click');
    }
})
$('body').on('mouseleave', '.as_slider', function(){
    if(!$(this).find('.as_play').hasClass('as_pause')){
        $(this).find('.as_play').trigger('click');
    }
})
});
</pre>
I hope this helps
<br />
<br />
Best :)</pre>

I did everything you said but nothing worked!

Hello,
Can you send me the link to your site so I can take a look and see what’s going on?
You can contact me privately via email here: https://codecanyon.net/user/castleplugins#contact

Best, David

Any idea why the previous images in rotation are not being hidden and the new images are just layering on top of them, creating a collage of sorts, of multiple images stacked one on top of the other, like this:

https://goo.gl/hCReJR

How do I fix that, so only the current image in rotation is showing?

Hi,
try the following, open the js/slider.js file and find this:

imgs.eq(before).css('zIndex',99).hide().siblings('img').css('zIndex',50);
then replace it for this:
imgs.eq(before).css('zIndex',99).siblings('img').css('zIndex',50);
then clear your browser cache and try again please ;)

Yep, that fixed it. Thank you!

Howdy, for some reason, the first image in the slider is only displaying 1/2 of the image. It’s fine after the first loop. You can see it at the following link. Scroll down past the 1st banner:

http://costaverdecenter.com/our-vision-spec/

Also, I can’t seem to show the navigation dots.

Hi,
try adding this peace of CSS:

.as_slider img{
    left: 0 !important;
}
Best, David

That did it, thanks! Do you have any idea why I can’t get navigation arrows or navigation dots to show? I have them turned on in the settings…

EDIT: They are there, but must be transparent or something. I can hover over them, but I can’t see them.

add this CSS:
.as_navBtn{
    background: white !important;
}
it seems that some CSS from your theme is overwriting the default CSS of the plugin

Best, David

Captions is a layer? or a input field to type?

caption is the text that shows up in front of the images, if you are using the automatic version it would be the name of the image, if you are using the no-automatic version then you can type it manually ;)

I simply want the slider to ONLY cycle images when hover.. Do you already have settings for this?

Hello,
currently this setting is not part of the plugin, but I’ll keep it in mind for a future update ;)

Hello, I just got the plugin and noticed that the only editable part of the folder location is “images” under the ”/wp-content/plugins/smartSlider/” folder.

Is there a way to change the entire folder location to ”/wp-content/gallery/my-nextgen-gallery” for example?

I got this plugin because in the documentation shown in your plugin page, it shows the whole path /wp-content/plugins/smartSlider/images to be editable (all in the text box).

Thanks.

Hello,
alright glad you found that ;) also I think you can use relative paths for example ../images or ../../images etc..

Best, David

Thanks for replying.

Is there a way to set a fixed height of the slider so it doesn’t resize everytime it loads a different sized pic?

Thanks.

Hello,
well you could have all your images with the exact same height but try adding something like this in CSS:
.as_slider {
  max-height: 400px;
}
specify the height of your desire instead of the 400px
Best, David

Can the images in the folder be randomly displayed?

Hello,
did you try setting the option “Random Order” to yes in the admin section?
Best, David

Hi. Before I buy: Can this be styled globally so I get a fade transition and caption styling (multipline captions, below the image and on a solid background) on every slide in a slider without having to adjust the style for each slide. I understand that the slider enables one to do manual adjustment, but I don’t want to do that and want to be sure global adjustment is possible.

Hi, well currently if you wish to specify the images manually you also would need to specify the transition effect and styling in there, but sounds like a future update ;)

David, Thank you for your reply, but I’m not sure I understand your reply. When you say, “if you wish to specify the images manually…” Is there another way to specify which images show in a slider that could be styled globally? I have many sliders to build with many slides. Adding steps to add styling on each slide would be too time consuming. I just want to uplaod the images and captions and have them all transition and appear uniformly. Is that not currently possible?

Yes, it can read the images from a folder in your server or WP installation, see the docs here: http://www.davidbo.dreamhosters.com/plugins/sliderWP/documentation/index.html

Hi, the plugin is great! I’m just having an issue with the first image that loads on the slider. Looks as though there is a margin-right and only half of the first image shows. Afterwards, it works totally fine. Any clue on what I can do to resolve this issue?

Thanks David, see the slider here – http://bit.ly/1iJ8Nzs

Try adding this peace of CSS:
.as_slider img {
   top: 0;
   left: 0;
}

That worked, Thanks!!!

Should work with the attached images to post / page

Hi, unfortunately it only reads the images from a folder or manually in the HTML

Hi David, Before I buy, I’m wandering if I could use it instead the original one only on the home page. http://www.donothing.org.uk/ f8 demo http://graphpaperpress.com/themes/f8-lite/#demo-full And how can I do that? thanks Wei

I would recommend you the WP version since is more for WP, it has its admin page! in the other one you would have to specify everything in the code

thanks, it works well. But i got some new questions :), have a look the link below http://www.donothing.org.uk/slide-test/ 1, how can I hide the play button on the right-top corner 2, how can I add link on each image 3, I tried, but I couldn’t put the slider in my home page as the image I showed to you before

Set the play button to false in the admin page, you can see the docs and the options here: http://www.davidbo.dreamhosters.com/plugins/sliderWP/documentation/index.html

You would have to tweak the slider.php file in order to add a link with Javascript in the:

<img />

Hello, where can I find the full parameters available? For example, I need to make make a second slider I created not show random.

The 1st slider I want random, the second one I don’t. That’s why I’m asking what to put in the shortcode for the second slider.

ohhhh I understand, the admin options will affect all the instances of the slider in your WP installation, and currently there’s no option to specify to a single shortcode in order to change the order option, that would need a tweak of the script

OK, thanks for the explanation.

Is it possible to have a slider where you see part of the image before & after the current image?

Hi, that is not currently possible

So far this plugin does most of what I need. Nicely done. I need to add links to the caption text for “read more” links. It would also be great to add a link around the image as well. How would I do that?

are you using the automatic feature? or the manually? if you are using the automatic feature then there’s no way to add a link to the image, if you are using the manually way then you can do it with Javascript, you would have to add something like this to the img tag:
onclick="location.href='http://google.com'" 

I could not resolve the issue of the sub nav menu dropping behind the slider. Please fix this

Hi, a link to your page would be more helpful, but you can add some z-index to your menu maybe 999 so it doesn’t go back the slider

Hi, Love this slider. I have it working as a slideshow on a Pinterest clone home page. Real cool. Cheers, J

thank you :) I’m glad you like it

Great plugin! Is there any way to get it to auto-serve alt tags, e.g. by using the file name?

Failing that can it have alt=”” ?

Hi do you mean the alt attribute of the img tag right? well you can open the index.php file and find this line:
<img src="$urlIMG/$value" data-effect="$fx" data-captioneffect="$fxCaption" />
And just add the alt tag like this:
<img alt="$title" src="$urlIMG/$value" data-effect="$fx" data-captioneffect="$fxCaption" />
I hope this make sense, Cheers!

In the code above use single quotes instead of double quotes!

great work, thanks thats it!

Hi, The script is wonderful. When I view it on an apple iphone 4s, the control dots and pause are not showing. What is your recommendation? Cheers,J

Is for the option “Hide Icons in Width” of the admin page! by default is set to 500 px if you want you can change it! but I put it there because when the page is to small then the bullets and the play button are way to small and from an mobile device is very hard to click on them! so maybe is best to hide them so you can appreciate the images better!

But change it at will, Cheers!

I have a problem with my sub-navigation menu running behind the slider. Is there any way to make the slider be behind the drop down sub nav?

Well there is a property named z-index of CSS, the menu must have a higher z-index than the slider, so easily target your menu with css and apply a higher z-index for example:
.theClassOfMyMenu{
   z-index: 999;
}

This is for a Wordpress site, so I guess it’s in PHP.

Well at the end it is always HTML so you can edit it through CSS! if you give me a url to your site I can tell you how and where to do it!

Hi,
Bravo—Great script!

I want to place a different slideshow on each post.
First, I would FTP the images.
Second, I would bulk upload posts via CSV Importer.
Third, “Auto Post Thumbnail” will make the first image the featured image.
Finally, in the csv file for post (csv_post_post), I would insert a shortcode to create the slider:
{shortcode:size:margins:speed:etc}
<img1>
<img2>
<img3>
{shortcodeend}

That’s it. In this manner, I can bulk create individualized slideshows.

I’m very encouraged, it appears that your slider works like this,facilitating bulk post personalization. How do I place it in a theme, and override the default look of the post-you use twenty-ten, I would like to keep the menu, but make the post look like a menu, margin, slideshow-clean and elegant—like a fullscreen background slideshow approach.

I’ve read everything you show and it appears that in your wisdom you perceived this need.

I can’t find any script which has done what you’ve done in a fullscreen background context. So, I would like to use your scripting method to fill the device screen responsively like a background image slideshow like wp-supersized. If I have a one-page theme, I could set up subdomains for each of my salespeople and build a custom almost fullscreen slideshow. However, I think I would prefer what you’ve done as a background slideshow. Call me crazy, but, if it were a background slideshow, then I could build overlays coming in from the outside the mobile viewable area (custom coding). This too could be defined via shortcode in a bulk manner as you have done here. (I searched for 6 hours and cannot find what you’ve done as a background slideshow for wp-supersized. There is a wp-supersized xml feed plugin.)

Cheers, J

try to replace for the anchor tag the: < for & #60; and the > for the & #62;


Remove the white space between the & and the #

for the a href?

This works. Thank you. Your code was changed by this remove space between & #:
<img alt="" src="http://award.relationshipleads.com/wordpress/wp-content/plugins/smartSlider/img1/14.png" data-effect="fade" data-captioneffect="fade" data-caption="6
& #60;h4& #62;blah
& #60;/h4& #62;
& #60;a href='example4.php'& #62;A link here & #60;/a& #62;" />
by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey