current homepage
]]>Thanks for your help
But here is what I found:
in cslider.php the shortcode function uses camelCase to declare $atts if the names are compound words
e.g.
if($atts["infiniteLoop"])
{
$infiniteLoop = $atts["infiniteLoop"];
}
This causes an issue when declaring the attributes in the shortcode and the default settings (or option settings) will be used instead.
When you enter:
[cSlider infiniteLoop='true']
according to the WP Shortcode API, “Attribute names are always converted to lowercase before they are passed into the handler function.”
so the function is getting
$atts['infiniteloop']
but is referencing
$atts['infiniteLoop']
This can be remedied entirely by changing references to $atts to all lowercase both in the shortcode and in the handler function.
Otherwise thanks for making such a handy plugin!
https://www.ads-software.com/plugins/cslider/
]]>Is it possible to have multiple sliders on one site?
I have one on the home page and I would like to a second, separate one for an interior page.
Thanks,
Josh
https://www.ads-software.com/extend/plugins/genesis-responsive-slider/
]]>