SeanFromIT
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Nivo Slider] can't get it to workI liked the simplicity of featured images + a category to decide what to include in the slider. Soliloquy and others seem to want you to use custom post types. Does anyone know of a comparably simple slider?
Forum: Plugins
In reply to: [WP Nivo Slider] can't get it to workI have the same problem with the slider loading forever, also 3.5.1. Replacing .on with .bind did not help.
I was able to do this by manually editing /resources/widget.php line 76 from:
window.location.reload(true);
to:
window.location.assign("someURL");
Of course, this will break if I update the plugin in the future. It would be nice if this was a widget configurable option.I also received this error on fresh WP+Jetpack install when I tried to activate stats, but upgrading to 1.1 fixed it.
Maybe this will help? https://forums.sharethis.com/topic.php?id=3024
Same.
Forum: Plugins
In reply to: WP Nivo Slider Images Not Appearingwp-nivo-slider.php, modify like choibc said starting at line 216.
See Codex: The Post Thumbnail, you can set image size directly in this file without modifying functions.php. Here’s what I used:<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php $thumb_attr = array( 'title' => get_the_title() ); ?> <?php the_post_thumbnail('full', $thumb_attr ); ?> </a>
Also be careful you don’t use div with id of “slider” elsewhere on your site. Search for #slider in your theme files to be sure.
Ditto. I also get it if I try setting a whitelisted form variable.
Forum: Plugins
In reply to: [Plugin: S3Slider] Edited Posts Drop From SliderConfirmed that this is only a bug with this plugin. If I disable the plug-in, go set all the jslider_image fields manually and save, then enable the plug-in, things work. Unfortunately the slider settings don’t save so you have to enter those again after re-enabling…
It also doesn’t play well with WP Super Cache plugin.
Forum: Fixing WordPress
In reply to: Custom Field Values Not SavingI have this same problem in WordPress 3
Described here: https://www.blogging-secret.com/another-bug-for-wordpress-25-custom-field
and here: https://www.ads-software.com/support/topic/163769?replies=20I hope someone has a workaround that works. One guy said to try saving a post before adding custom fields, but that hasn’t helped me. The custom field values still disappear.