I’m considering purchasing the WP Slick Slider Pro version. However I need to know the following.
I’ve created a screenprint of a site that uses WP Slick Slider. Their version enables a user to click on a thumbnail and the image at full size pops up directly underneath. Please see screenshot of what I mean below
https://www.dropbox.com/s/2mk09l1xf6mxqcp/rollover_effect.jpg?dl=0
1. Do I need the pro version?
2. Do I need extra coding to produce this effect?
Thank you
]]>The slick slider carousel images displays the images vertically on startup. Then it shows them horizontally. Please advice to rectify this
]]>Hello,
it seems that the slider loads all pictures at once.
So if I have about 50 or more pictures in the slider, it gets very buggy and stuck.
How can I say the slider, that he has just to load about 5 pictures and reload the others little by little?
Thank you,
Chris
I’m new at all this, so it may be intuitively obvious to everyone else, but I’ve looked all over the place and I can’t figure out how to even get images into a slide show…
I’ve tried several slide shows, some better than others, but I’m totally baffled as to how to even get started with this one.
Can someone provide a simple getting-started for me?
Hi, I’m trying to include two additional navigation arrows in the pager.
I’ve replicated this code in output.php adding a class to be able to modify CSS:
if( $prev_next_buttons ){ $out .= ‘<div id=”wpss_prev_’ . $slider . ‘class=”previous”‘”></div>’; }
It works, but only works the first code that I place.
I’ve added this code to wpss-functions.php to create new ID’s:
if( isset( $data[‘wpss_useprevnext’] ) && $data[‘wpss_useprevnext’] == ‘on’ ){ echo “‘ant’ : ‘#wpss_ant_” . $slide->slug . “‘, ‘sig’ : ‘#wpss_sig_” . $slide->slug . “‘,”; }
Any ideas?
Thanks in advance!
]]>Hi!
Great plugin!
I don’t know if you are still actively developing this plugin, but I think that having the ability to add a background image would be very useful.
With a background one could overlay the background with text and/or another image. (sort of like on debbiemacomber.com)
I’ve tried some post background plugins…
Custom Background Extended
WP Post Background
All-in-One Custom Backgrounds Lite
They all indicate that they work with custom posts… Unfortunately, they don’t work with WP Slick Slider.
Any chance of a background option?
]]>On occasion (15% of instances?) my slick slider only loads a small sliver at top left of each slide and treats that as the entire slide area. It scrolls in that top area, while the slider background covers the whole normal area as intended.
Installed on a wordpress site at https://www.thelovelydiaries.com/shop/product-category/shop/
]]>will Slick Slider work with WP 4.0?
]]>How can I use a taxonomy as a source for my slider?
It’s not obvious.
]]>Using the most recent version of wordpress and the images are not showing up.
Going to the image url it says:
A TimThumb error has occured
The following error(s) occured:
Could not find the internal image you specified.
Hi
iI would like to display the position of the current slide and the total number of slides
e.g 1 out of 12
is this possible with some coding?
Thanks
Is there template code that can be use to display the slide title about the slideshow as a Title and/or below as a caption?
Or is this built into the slideshow somehow?
Thanks,
Michael
Hi there,
I really hope you can help me.
I’m using WP Slick Slider for al really nice header slide with text and link in my new website https://www.lebenswerk-freiburg.de/cms/.
For every page I want to show a different slider, so I created them in the admin panel (only with the same slides for the beginnig, as I’m still constructing the site).
In my header.php of my theme, i call them like this:
<?php if(is_home() && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘homeslider’ ); } ?>
<?php if(is_page(‘unser-spektrum’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘unserspektrumslider’ ); } ?>
<?php if(is_page(‘webdesign-und-realisierung’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘webdesignslider’ ); } ?>
<?php if(is_page(‘grafikdesign-und-werbung’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘grafikdesignslider’ ); } ?>
<?php if(is_page(‘fotografie’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘fotografieslider’ ); } ?>
<?php if(is_page(‘domains-und-hosting’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘domainsslider’ ); } ?>
<?php if(is_page(‘produkte-und-shop’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘produkteslider’ ); } ?>
<?php if(is_page(‘unternehmensbetreuung’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘unternehmensbetreuungslider’ ); } ?>
<?php if(is_page(‘referenzen’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘referenzenslider’ ); } ?>
<?php if(is_page(‘das-lebenswerk’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘daslebenswerkslider’ ); } ?>
<?php if(is_page(‘unternehmen’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘unternehmenslider’ ); } ?>
<?php if(is_page(‘team’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘teamslider’ ); } ?>
<?php if(is_page(‘lebensnetzwerk’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘lebensnetzwerkslider’ ); } ?>
<?php if(is_page(‘non-profit’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘nonprofitslider’ ); } ?>
<?php if(is_page(‘kontakt’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘kontaktslider’ ); } ?>
<?php if(is_page(‘impressum’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘impressumslider’ ); } ?>
<?php if(is_page(‘links’) && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘linksslider’ ); } ?>
<?php if(is_single() && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘homeslider’ ); } ?>
<?php if(is_archive() && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘homeslider’ ); } ?>
<?php if(is_search() && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘homeslider’ ); } ?>
<?php if(is_404() && function_exists( ‘wp_slick_slider’ ) ){ wp_slick_slider( ‘homeslider’ ); } ?>
This works perfectly for the home slider and the one for “unser spektrum”, which were the first two sliders I created.
But for all the others, somthing seems wrong and I just can’t find what I did wrong, thy just don’t show. Configuration is just the same, slugs match,…
can you help me?
Thanks a lot,
Lisa
]]>Hi,
Is there a way to hide the slide title from displaying – and where can I go to edit the visual settings (I’d like to remove the numbers in the pager and change the images for the prev and next links).
Thanks you
]]>Could you please provide some sort of description how it to set it up. Like what are slides and slider for ?
]]>The images on my slider were broken, but it was still pulling in the meta data and style info.
Site: https://www.hawkingspost.com
The original slider was using full width images and a custom template that utilized custom fields/post meta to make the images link.
** The current slider is working because i am using the full text with link wrap as a work around. **
I think it has something to do with permissions and timthumb.
I have upgraded to the most recent version of the plugin, but it was also not working on version 1.5.
thank you!
]]>Can you add a metabox of Slide order number to Quick Edit UI.
Will make huge difference in slides management.
Can you make Pause and Resume links translatable?
Right now they are not. No strings are picking with localisation attempt.
Would be nice if 0 is a timeout to have slider still, accessible through pager or navigation only.
Makes a lot of sense if you put video into slider and moving cursor out.
Right now if 0 is a slider timeout, it swaps slides at a browser rendering speed – makes no use.
Would it be possible to have a Screenshots tab on the plugin page here on www.remarpro.com? Instead of installing and trying out some configurations to get a visual idea of how this works, it’d be good to just take a glance at some screenshots to decide whether this is what the siteadmin was looking for.
I wouldn’t say no to a demo site, either ??
]]>Can someone please say where is the css file to change navigation buttons please
]]>Hello, If I add a featured image and press save the post type of the post is converted to ‘post’ instead of the slider post type.
]]>Using the newest version of WP and the plugin, doesn’t seem to work. The images just don’t show up at all
]]>Can an admin please inform me why my plugin is no longer publicly available? It would be real nice to get some sort of notification if my plugins are pulled. From the stats it has not been available since midway through november.
Its not like you don’t have my email address on file. Couldn’t something be added that emails the author automatically that their plugin has been taken offline and ask them to correct this asap.
Cheers
Ben
I’m trying to place a AdRotator ad shortcode e.g. [adrotator ad=”3″] in the content of all 3 slides or a slider. But when viewing the slider, the page display “results not found” where slider should be: https://www.chefsconsortium.com/?wpss_sliders=adrotator_slider. The slider displays though it’s missng the slides. Thanks for any direction.
]]>Reproduction: (Safari)
1) Create test slide with Lorem ipsum inside, enclosed in coloured div for demo. Do not assign type in Slide Information drop down. It is Left Half-image by default. Assign slide to slider. Save slide.
2) Open the page with slider running. You see that you forgot to use Full Text type of slide. Oh my God! I gonna use the correct type!
3) Return to slide edit. Assign Full Text type in Slide Information dropdown. Save slide.
4) On return to Slider it appears that you still have your slider Half wide. Bumper… State was not saved.
Its a bug.
]]>For some reason i cannot seem to get any of the easing or effects of the slides to work in ie8.
Some of them seem to work great in Chrome, etc so I guess maybe I am wondering if there is some “magic recommended combination recipe” for what you have discovered works best across all browsers.
I mean, I hate ie as much as the next guy, but I gotta have the “fadey wadey” working for ie8 guy and right now it’t not.
Anyone else experience this?
Fade effect just turns white for the duration of effect then new slide shows. Kind of bogus looking, so I hope it’s just me buggering it up because I seriously love this plugin.
]]>Is there a way to link each slide? I’d like to use this plugin for rotating ad spaces on a website, but each ad needs to link to a different page. Thanks!
]]>WP Slick Slider plugin: Does not work with shortcodes. Sidebar php function insert works.
]]>Great plugin, gavi it a 5 star rating.
Just one request, we have a project that requires the use of embedded Vimeo videos in the slider but there’s noway to stop the auto-sliding once the Play button for a video is clicked, such a feature would be awesome.
Cheers and thanks for the great plugin.
]]>