rdws
Forum Replies Created
-
Forum: Plugins
In reply to: [SliceShow] Wp 3.8 IssuesIt’s hard to say what is happening without more information.
Do you have other plugins installed? If so, have you tried disabling those to see if there is a conflict with one of those plugins? Should you find a conflict please post what plugin it is so we can troubleshoot further.
Have you tried switching themes? Do you get the same error when using the Twenty Fourteen theme?
Are you using the latest version of the plugin (1.1)?
Any other information you can provide would be helpful.
Forum: Plugins
In reply to: [SliceShow] Adding an URL with _blank-tagRoman,
I’m glad you like the plugin! It currently does not support this option out of the box; however, if you want to make it so that all slide urls have “_blank” in them you can add the code to lines 418 and 422 of the plugins/sliceshow/lib/sliceshow.public.class.php file.Just remember that when you upgrade later those changes will have to be re-applied.
Forum: Plugins
In reply to: [SliceShow] Stop AutoplayThis should do it:
- Open the plugins/sliceshow/lib/sliceshow.public.class.php file. On line 363 change it to
$timeout = (int)$timeout;
from$timeout = ((int)$timeout == 0) ? 7000 : $timeout;
- Open plugins/sliceshow/lib/sliceshow.meta-box.class.php file.
- Change Line 112 to
$meta = trim($meta) != '' ? $meta : $field['default'];
from$meta = $meta ? $meta : $field['default'];
- Change Line 226 to
if (trim($new) != '' && $new != $old) {
fromif ($new && $new != $old) {
- In your slideshow set the Slideshow Speed (milliseconds) setting to 0.
I hope that helps!
Forum: Plugins
In reply to: [SliceShow] White screen mediauploaderI just ran across this thread and would like to help figure out a solution. Which option in the media uploader are you using: “From URL” or “Media Library”?
From what I can tell the current way the plugin is setup won’t work with the “From URL” option even with ITS Alaska’s fix from above because it relies on the image having a post id.
- Open the plugins/sliceshow/lib/sliceshow.public.class.php file. On line 363 change it to