kosinix
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyclone Slider] Slider not working properly in ChromeAre you using lazyload? Your images have empty src attributes
Forum: Plugins
In reply to: [Cyclone Slider] Thumbnail- Open by DefaultHello ShatteredChain,
Sent a replied to you via email.
Thanks!
NicoForum: Plugins
In reply to: [Cyclone Slider] Custom Template no longer working in 2.5.0Is this still an issue with the latest release (2.5.3) ?
Forum: Plugins
In reply to: [Cyclone Slider] Menu Drops behind SliderHello ShatteredChain,
Just add a higher z-index to your sub-menu or your nav. A quick googling will yield you a lot of answers.
(BTW i can see you have fixed it already, good job!)
Forum: Plugins
In reply to: [Cyclone Slider] pager slide num templateHello erwanpia. First good job on figuring out this one on your own. However, I wouldnt advice hacking the core of cyclone as the edits you have made will be overwritten when you update the plugin.
My recommended solution is to edit the template. You can check out the documentation here about “Templating”. And yes this feature is already implemented as long as you know templating. Thats what I did with the Text template: http://www.codefleet.net/cyclone-slider-2/templates/text/
Forum: Reviews
In reply to: [Cyclone Slider] My go to sliderThank you!
Forum: Plugins
In reply to: [Cyclone Slider] Templates brokenPlease send it here http://codefleet.net/contact-us/ with your wordpress.org username.
Forum: Plugins
In reply to: [Cyclone Slider] Templates brokenDo you have a link to your site?
Forum: Plugins
In reply to: [Cyclone Slider] What is max # of slides?There is no limit or max #
Forum: Plugins
In reply to: [Cyclone Slider] Feature SuggestionYou can definitely add shadow to the template as what I have done with this template:
http://www.codefleet.net/cyclone-slider-2/templates/controls/
You will need do a bit of templating:
http://www.codefleet.net/cyclone-slider-2/#templatingHere are all the templates created for cyclone: http://www.codefleet.net/cyclone-slider-2/templates/
For the random effects, you can imitate it by adding per slide transition effects for images. Like this one: http://www.codefleet.net/cyclone-slider-2/templates/dos/
So with templating you can make cyclone do a lot of cool stuff.
Forum: Plugins
In reply to: [Cyclone Slider] Slider position problemTry giving the parent LI of your sub-menu a z-index of 900.
Forum: Plugins
In reply to: [Cyclone Slider] admin problems after upgrade version 2.5Fixed by clearing Tony’s browser cache. Closing this thread now.
Forum: Plugins
In reply to: [Cyclone Slider] admin problems after upgrade version 2.5Thanks for the info.
It appears cyclone’s javascript does not run, therefore you cannot drag,delete, add slide or image. I could not troubleshoot with these info alone.
Could you do me a favor and contact me at http://www.codefleet.net/contact-us/
Forum: Plugins
In reply to: [Cyclone Slider] admin problems after upgrade version 2.5To help you please check your browser console and report the errors here.
I see. For the thumbnail size you can change it directly at the template:
Assuming you have read about templating already,
- Go to thumbnails/slider.php
- Modify this line:
<img src="<?php echo cyclone_slide_image_url($slider_meta['id'], 30, 30, array('current_slide_settings'=>$slider_meta, 'slideshow_settings'=>$slider_settings, 'resize_option'=>'crop') ); ?>" width="30" height="30" alt="<?php echo $slider_meta['img_alt'];?>" title="<?php echo $slider_meta['img_title'];?>" /> - Change 30 to your desired size, example 100:
<img src="<?php echo cyclone_slide_image_url($slider_meta['id'], 100, 100, array('current_slide_settings'=>$slider_meta, 'slideshow_settings'=>$slider_settings, 'resize_option'=>'crop') ); ?>" width="100" height="100" alt="<?php echo $slider_meta['img_alt'];?>" title="<?php echo $slider_meta['img_title'];?>" />