kosinix
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyclone Slider] Image classes?I’m using a plugin to generate responsive images for me and I’m trying to tell it to ignore the images loaded in by cyclone slider.
Im curious. How do you specify the images to ignore?
Forum: Plugins
In reply to: [Cyclone Slider] Not styled on Win7Thanks for reporting this pengo.
Strange you seem to be the only one experiencing this problem. If you go directly to the css link:
http://www.mydomain.com/?cyclone_templates_css=1
what do you see?
BTW ?cyclone_templates_css=1 is generated by cyclone to display the css.
Forum: Plugins
In reply to: [Cyclone Slider] Image classes?There is no setAttr function in jQuery.
You can target the image with this code:jQuery(document).ready(function ($) { $('.cycloneslider-slide').find('img').attr('class','cyclone-slider-image'); }or much shorter
jQuery(document).ready(function ($) { $('.cycloneslider-slide').find('img').addClass('cyclone-slider-image'); }Forum: Plugins
In reply to: [Cyclone Slider] Makes compressed image instead of using original uploadThanks for the feedback. That would be a nice addition.
FYI there is always cyclone’s template system. Developers can pretty much do anything with it.
Forum: Plugins
In reply to: [Cyclone Slider] Makes compressed image instead of using original uploadHello there,
You can modify the template.
Replace
<img src="<?php echo cycloneslider_thumb($slider_meta['id'], $slider_settings['width'], $slider_settings['height'], false, $slider_meta); ?>" alt="<?php echo $slider_meta['img_alt'];?>" title="<?php echo $slider_meta['img_title'];?>" />with
<img src="<?php echo wp_get_attachment_url($slider_meta['id']); ?>" alt="<?php echo $slider_meta['img_alt'];?>" title="<?php echo $slider_meta['img_title'];?>" />for info in customizing templates check this: http://www.codefleet.net/cyclone-slider-2/#templating
Forum: Plugins
In reply to: [Cyclone Slider] Frames for SlidesHere: http://lab.codefleet.net/wp1/?page_id=2
Downside: You wont be able to click the image if that image has a link.
Forum: Plugins
In reply to: [Cyclone Slider] Linking thumbnail galleries to cyclone slider2Hello Dave,
Yes it seems your link points to somewhere else. What are you using to display the thumbnails? Is it [gallery] shortcode of wordpress?
Forum: Plugins
In reply to: [Cyclone Slider] Frames for SlidesHello Michael,
Thank you for the suggestion. I haven’t tried this yet. I have downloaded your frame 1, will see what I can come up with.
Best regards,
NicoForum: Plugins
In reply to: [Cyclone Slider] Post type SwitchingHello energy0m,
With regards to your questions:
Any idea why this error happens ? >>
Its a design flaw on how post type switcher works. It should not change the post type of a custom post unless the user wants to. Also it should not affect custom post types that are set to public = false. Right now it changes the slideshow’s post type to “post” that is why you are redirected to the edit post screen after saving.will changing public to true affect anything major? >>
By setting it to public = true it will appear in search results. Also “view” links will appear in cyclone’s admin. Though it fixes your problem, its not really a complete solution.You should report this to post type switcher support as well.
Forum: Plugins
In reply to: [Cyclone Slider] Linking thumbnail galleries to cyclone slider2Hi Dave,
I have created something similar on cyclone’s website:
http://www.codefleet.net/cyclone-slider-2/templates/
When you click those thumbnails it takes you to the actual slideshow page.For every thumbnails i created a corresponding page. Example in http://www.codefleet.net/cyclone-slider-2/templates/ the first thumbnail (Default) links to this page http://www.codefleet.net/cyclone-slider-2/templates/default/ and in that corresponding page is where i placed the shortcode [cycloneslider id=”slideshow”].
The thumbnails are just regular images that are wrap with links:
<a href="http://www.codefleet.net/cyclone-slider-2/templates/default/"><img alt="" src="http://www.codefleet.net/wp-content/themes/codestrap/img/thumb-default.jpg"></a>Forum: Reviews
In reply to: [Cyclone Slider] The PERFECT Slider!!Thank you for the wonderful review and rating Cea! Please share it with others so that they will know about Cyclone Slider 2.
Forum: Reviews
In reply to: [Cyclone Slider] BrilliantThank you for the wonderful review and rating! Please share it with others so that they will know about Cyclone Slider 2.
Thank you for the wonderful review and rating! Please share it with others so that they will know about Cyclone Slider 2.
Forum: Reviews
In reply to: [Cyclone Slider] It Works with WordPress 3.5Thank you for the wonderful review and rating! Please share it with others so that they will know about Cyclone Slider 2.
Forum: Plugins
In reply to: [Cyclone Slider] SEO friendly?Hello Dave,
The title and alt (for SEO) can now be added to each slide in the latest version (2.2.0). Thanks again for the suggestion.
Best regards,
Nico