Installed fine but is there any known issues with WP 3.6?
I can’t name the title for each slide.
It doesn’t show the featured image for each slide, just a white box.
Help?
Tested with FIREFOX using the <?php if(function_exists(‘jquery_slider’)){ jquery_slider(); } ?> in the header and it is not showing up.
Tested use the short code and it allows the box and the thumbnail is trunc the picture. I think this needs more work and testing.
Stick to it.
]]>I saw the post from a year ago but couldn’t access the resolution. I am wondering why the featured images box does not appear when I access each slide? Can someone help me out?
]]>Slider transitions and caption texts works only with IE browser but no with FF or Chrome. Does anyone else have same broblem?
]]>Right after i upgraded to 3.4.2 the slider totally disappeared , see https://www.joodvs.com the slider is not visible at all.
on admin side i don’t see any issues or alerts and the plugin is activated normally.
]]>Hi,
I noticed that js and css files are missing from the archive in lates version.
I have installed wordpress on my domain https://socspune.com/
I installed plugin, but it replaced the previous image with no images, I want to know how to add images into plugin and other settings so that this gallery will appear on my home page.
If you add the PHP script to your theme nothing shows up. If you add the shorthand the slider shows but no images.
]]>This works in safari but not firefox. In firefox, I see the loading circle finish, but the image still does not appear. In safari the image loads instantly but I do notice the load circle is there.
]]>The problem around settings is the comparison made. Just to note, the plugin saves an initial true
boolean for each boolean option, and uses the strings "true"
and "false"
in the settings page. The comparison
<option value="true" <?php if(get_option('js_pause')) echo "selected" ?>>Yes</option>
<option value="false" <?php if(!get_option('js_pause')) echo "selected" ?>>No</option>
doens’t work because any value different from false
, ""
, 0
and "0"
is considered true
by PHP. Therefore:
<option value="true" <?php if(get_option('js_pause')=="true") echo "selected" ?>>Yes</option>
<option value="false" <?php if(get_option('js_pause')=="false") echo "selected" ?>>No</option>
works. Note that the startup values must change from…
add_option('js_pause', true);
add_option('js_paging', true);
add_option('js_nav', true);
…to:
add_option('js_pause', "true");
add_option('js_paging', "true");
add_option('js_nav', "true");
This seems to happen because WP saves values as strings. Other option is to use 0
and 1
, as both will be converted to false
and true
, respectively.
The php code that calls the plugin from a template doesn’t work ie:
<?php if(function_exists(‘jquery_slider’)) { jquery_slider(); } ?>
Works fine if you call from with page or post – but this is no good for me
]]>I was unable to activate the plugin upon install. Received a message “Call to undefined function: get_current_user()”
]]>I tried creating a new slide, but the featured images option doesn’t appear. I uploaded an image and the option to “set as featured image” doesn’t even show up. Any ideas?
]]>I’ve installed the plugin and added some slides but when I put the code on my page it breaks the display. I see everything on the page up to where the slider is inserted. I do not see the slider or anything that follows it in my code??
]]>Editing and posting a slide as custom post type works nicely, but I don’t find a way of publishing the stuff anywhere on my website.
]]>