mrrafs
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Docs] ReferenceError: quicktagsL10n is not definedthanks – yes you are right it is the theme that causing the issue.. I will contact the developer
apologies for contributing to the noise
ahh -changing size to ‘m’ or ‘c’ fixes it..
thoughts ..it loads in a funny way displaying all images in a collum (i.e. plain html) before running galleria & its not finding sets with public photos in them.. mmm, maybe its a delay as i’ve just changed them..
oh -yeah, having private API would be amazing
yay! galleria now loads but……. i dont know how to pass options to galleria so i get err…
Fatal error: Stage width or height is too small to show the gallery. Traced measures: width:920px, height: 5px.
the classic theme..
thanks!Forum: Plugins
In reply to: [Flickr API] [Plugin: Flickr API] multiple API's on a pageits working now – i think it was that one of the sets was all private photos – doh!
Forum: Plugins
In reply to: [Flickr Gallery] [Plugin: Flickr Gallery] Galleriawhere in ‘flickr Gallery’s’ code would i ….
<script type="text/javascript"> $().ready(function() { // JSON feed from Flickr var feedUrl = "https://api.flickr.com/services/feeds/photos_public.gne?format=json&jsoncallback=?" // parse JSON using jQuery's built-in function $.getJSON(feedUrl, function(data) { // iterate through each item $.each(data.items, function(i, item) { // create image node in DOM and update it's src attribute // _m = medium img, _b = large; remove the replace function if you want the standard small images $("<img/>").attr("src", item.media.m.replace("_m", "_b")) // add image to gallery container .appendTo("#gallery") // add a link to each image - this will go to the photo on Flickr .wrap('<a href="' + item.link + '" target="_blank"></a>'); }); }); </script>
from:https://www.jamestease.co.uk/blether/display-flickr-photos-in-the-galleria-jquery-plugin/