raybewright
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Album] Smaller thumbs not showing – otherwise album worksit looks like something is not coming through the php file. the background url doesn’t seem to be populating.
I replaced this on line 145:
$html .= '<div class="image size-'. self::$options['size'] .'" style="background-image: url(' . self::_clean_url($img['images'][self::$options['size']]['source']) . ')"> </div>';with
$html .= '<div class="image size-'. self::$options['size'] .'" style="background-image: url('. self::_clean_url($img['source']) . ')"> </div>';This is from the line above with the href is. I doubt this is ideal as it’s pulling a large image to create a tiny thumbnail, but it’s working for now.
in the Javascript file, just add
function goToSlide(target) { if (target >= 0 && target <= slideEls.length) { var steps = target - (curSlide + 1); while (steps !== 0) { if (steps > 0) { curSlide++; steps--; } else if (steps < 0) { curSlide--; steps++; } } updateSlides(); } };in the section with nextSlide and beginSlide functions.
Then on a link add
<a onclick="goToSlide(2);" href="#2">Link Text</a>There are lots of other navigation and other features like this here: https://github.com/berb/html5slides-uulm
Forum: Plugins
In reply to: [HTML5 Slideshow Presentations] Printing the slides?You should be able to do this by specifying a print style sheet vs a display style sheet.
I had this problem too and reading this post I figured I too would not be able to use this plugin. So I installed the Events Calendar plugin the description references. After installing it, activating and then deactivating it, the All in One Event Calendar works great….and I love it!
Forum: Plugins
In reply to: Breadcrumb NavXT how to remove custom post type title in trailSame here, worked perfect, THANK YOU!