kosinix
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyclone Slider] main image not showing upHello jrana,
Can you post a link to your site?
Best regards
Forum: Plugins
In reply to: [Cyclone Slider] titles not showing up in slideshowHello dolphi17,
FYI: This support forum is for Cyclone Slider and not Cyclone Slider 2 which you are using.
I will release an update soon fixing this problem so please watch out for version 2.7.3 (not yet available)
best regards
Forum: Plugins
In reply to: [Cyclone Slider] Slideshow only working after reloading the pageHello lunar_storm,
You need to find the code in your mother slider that inserts/re-inserts the elements of the current slide. After that code, try calling
jQuery('.cycle-slideshow').cycle()and see if the Cyclone Slider 2 works. You should ask the help of your developer to assist you with coding as it requires intermediate-advanced skill in jquery and js.Best regards
Forum: Plugins
In reply to: [Cyclone Slider] Updating the slideshowHello nemanja.radevic,
By default templates are found in plugins/cyclone-slider/templates/. DO NOT make your modifications here as it will be overwritten when the plugin is upgraded.
The recommended way is to move it in your theme. To do that:
Add a folder named
cyclonesliderinside your theme. For example if you want to modify thedefaulttemplate, copy the default folder intotwentyeleven/cyclonesliderand make your modifications in there.Forum: Plugins
In reply to: [Cyclone Slider] Auto-Transition Pauseable While Video Slide Is Playing?I’m currently looking for a viable solution to this problem.
Forum: Plugins
In reply to: [Cyclone Slider] Auto-Transition Pauseable While Video Slide Is Playing?Hello kandrite,
Its not currently supported as it requires loading the YouTube API which is an extra overhead just for a simple pause. The only solution for now would be to disable auto transition. Sorry 🙁
Forum: Plugins
In reply to: [Cyclone Slider] Slideshow only working after reloading the pageHello lunar_storm,
It probably has something to do with your slider placed within a slider. It looks like you are recreating the elements when moving to a different slide in your mother slider. In other words, Cyclone Slider gets destroyed when moving slides in your mother slider. Try calling
jQuery('.cycle-slideshow').cycle()after you have moved into the slide containing Cyclone Slider. I recommend you consult the Cycle 2 API – http://jquery.malsup.com/cycle2/api/Best regards
Forum: Plugins
In reply to: [Cyclone Slider] Centered captions after upgrade?Thanks for reporting it lblake. It has now been fixed in 2.7.1
Forum: Plugins
In reply to: [Cyclone Slider] Feature Suggestions Thread@hassan – full width slider will be on the next release! Just doing some more testing.
Forum: Plugins
In reply to: [Cyclone Slider] Slider doesn't work on pageTry this:
Go to Cyclone Slider > Settings and click Restore Defaults
See if that fixes the issue.Forum: Plugins
In reply to: [Cyclone Slider] Slider doesn't work on pageHello terrazzor,
Sounds like you have javascript errors on your page that is stopping the slider. Kindly check if it has, here is a relevant link – http://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors
Forum: Plugins
In reply to: [Cyclone Slider] Default Template OnlyHello TimCarey,
Can please check for javascript errors on your admin page? Here is a relevant link – http://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors
Forum: Plugins
In reply to: [Cyclone Slider] Navigation and slides not clickable on mobile and tabletHello myladeybugg,
Glad to hear that it worked! And thanks for marking it as complete.
Best regards
Forum: Plugins
In reply to: [Cyclone Slider] Slider doesnt work?Looks like your missing wp_head() in your theme.
Also check if you have wp_footer() too
Forum: Plugins
In reply to: [Cyclone Slider] Responsive title?Try reducing the paddings:
@media (max-width: 400px) { /*** Change 400 to the screen width you want ***/ .cycloneslider-template-default .cycloneslider-caption-title{ font-size: 12px; /*** Change font size to what you want ***/ padding: 5px 10px 5px 10px; } .cycloneslider-template-default .cycloneslider-caption-description{ font-size: 10px; /*** Change font size to what you want ***/ padding: 0 10px 5px 10px; } }How small is your screen? Try reducing the paddings further until you arrived at the size you want.