Join our HiFi mailing list to receive the latest news & updates

A jQuery Flickr Feed Plugin

100 Comment(s) | Posted | by Joel Sutherland | |

View the Demo | Download the Zip

We often work with clients that maintain accounts with Twitter, Flickr, Youtube and other services in addition to their website. Often they will want to pull in data from one of their accounts to their website.  With Flickr, this is pretty easy because they make a simple API available.  Having worked with it a few times, we decided to make it even easier to pull photos from a public feed.

flickr dogs

There are a few examples of this in use on the demo page.  All of the photos on this page have been used with the generous permission of John Roberts (@jroberts13).

Plugin Overview

This plugin works by pulling a JSON feed from Flickr and applying the data it gets back to a template.  For example, we can generate this list of pictures:

<ul>
	<li><img alt="Photo Title" src="http://farm4.static.flickr.com..." /></li>
	<li><img alt="Second Photo Title" src="http://farm4.static.flickr.com..." /></li>
</ul>

From the following jQuery:

$('ul').jflickrfeed({
	limit: 2,
	qstrings: {
		id: '44802888@N04'
	},
	itemTemplate: '<li><img alt="{{title}}" src="{{image_s}}" /></li>'
});

The plugin gets the feed from Flickr using AJAX and applies each image it gets back to the provided template.

The Plugin Options

There are a number of options available on the plugin, these are the defaults:

flickrbase: 'http://api.flickr.com/services/feeds/',
feedapi: 'photos_public.gne',
limit: 20,
qstrings: {
	lang: 'en-us',
	format: 'json',
	jsoncallback: '?'
},
cleanDescription: true,
useTemplate: true,
itemTemplate: '',
itemCallback: function(){}

Here is a description of each one:

  • flickrbase: This is unlikely to be needed.  It is used to set up the url the jQuery AJAX call will need to be made to.
  • feedapi: There are a number of feeds that flickr makes available.  The default is the public feed.  Here is the list of all that are available: http://www.flickr.com/services/feeds/. This has only been tested on feeds that return photos.  So, for example, don't expect good results using this plugin on the Forum discussion feeds.
  • limit: Set how many items you want to loop through.  Flickr seems to limit its feeds to 20, so that is the default.
  • qstrings: This is the most important setting. This is used to request the correct feed.  In my examples I use this to set the user id.  These are automatically added to the request url. Depending on which feed you use (http://www.flickr.com/services/feeds/) there are different sets of query parameters available: http://www.flickr.com/services/feeds/.
  • cleanDescription: Flickr puts all kinds of junk in the description it returns. By default this plugin is set to remove everything but the plain photo description.
  • useTemplate: Set this to false if you don't want to use the plugins templating system.
  • itemTemplate: The template rules are described below.
  • itemCallback: You can add a callback on each item.  The scope is set to the container and the item object is made available.

Typically, the only things that will need to be set are limit, qstrings.id and itemTemplate.

Using the Templates

In order to make it really easy to use any kind of markup needed with this plugin, a simple templating system has been build in.  Here is an example of a template:

<li>
	<a href="{{image_b}}"><img src="{{image_s}}" alt="{{title}}" /></a>
</li>

You can see that this is just basic html with a few special tags mixed in.  All of the tags are surrouned by double curly braces. The plugin works by putting in the correct information for each tag and each item into the template.

The tags that are available depend on what flickr returns for each item.  For the Public Photos API these are: title, link, date_taken, description, published, author, author_id, tags, and image.  For the image property, the plugin uses the Flickr URL scheme to make several sizes available.  You can read about this at http://www.flickr.com/services/api/misc.urls.html.  The image tags available are: image_s, image_t, image_m, image, image_b.

The Callback Parameter and Integration

The plugin's second parameter is a callback.  This has the scope of the containing element and has the entire data response available. This is a great feature if you want to integrate this plugin with others.  Let's say you want to integrate it with colorbox. If you call $('selector').colorbox() and then this plugin it won't work.  This is becuase the plugin is adding elements to the page after the colorbox call.  This is even true if you call colorbox after this plugin.  Since this uses ajax, your images won't be added to the page until well after most of your javascript has run.  (In computer time).

Instead, the trick is to use the callback function.  This allows you to pass in code that you want to run after the images have loaded.  So for example, you can do this:

$('#cbox').jflickrfeed({
	limit: 14,
	qstrings: {
		id: '37304598@N02'
	},
	itemTemplate: '...example...'
}, function(data) {
	$('#cbox a').colorbox();
});
			

Now the colorbox call won't be made on the photos until they are loaded.

Demo and Download

You can see a demo of this plugin on the demo page.  Additionally you can download a zip of this plugin and the example.

As always, if you have any questions or comments, leave them below.  Enjoy!

100 Comment(s) | Posted | by Joel Sutherland | |

Comments

  1. Eytan Buchman's avatar
    Eytan Buchman
    | Permalink
    Thank you so much for this post. It was helpful, concise and saved me time. You make the internets happy.
  2. Martin's avatar
    Martin
    | Permalink
    Is this also useful for other websites like Youtube?
  3. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Eytan, Thanks! Martin, The structure probably is, but it is not compatible with youtube currently. I did some work on a site that needed a youtube feed pulled recently and I will release that code as soon as I get a chance to clean it up.
  4. Kien's avatar
    Kien
    | Permalink
    I've seen other posts on the flickr feed plug-in, but not as detailed as this one. thx for the post and including a demo!
  5. Fred's avatar
    Fred
    | Permalink
    Could you use this with tags - for instance, photos tagged to 'New York' or something?
  6. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Fred, This does work for tagged photos. You can use the qstrings variable to pass in tags. Flickr documents that here: http://www.flickr.com/services/feeds/docs/photos_public/
  7. Peter Vidani's avatar
    Peter Vidani
    | Permalink
    Thanks Joel! This was really easy to set up. I'm using it for a Tumblr theme, and it's initiated when the theme user enters in their Flickr ID. Is there anyway to make this compatible using their Flickr username instead?
  8. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Peter, I believe that requires using the Flickr API which I did not address in this plugin. Do you have a link to the theme? It sounds cool.
  9. Jeff's avatar
    Jeff
    | Permalink
    Great work! I have been looking for something like this to replace the standard Flickr badge.
  10. Andreas's avatar
    Andreas
    | Permalink
    Hi Joel, Thank you for a great tutorial! I now have multiple, custom feeds coming into my page. Feeling good about that. However, I could not get the colorbox function to work on more than one of the feeds at a time. (nationbranding.ambwork.com). Is that how colorbox works, or is it just my limited coding ability?
  11. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Andreas, That site is looking awesome! Great use of the plugin. I took a look at your code, rather than calling $("#cbox a").colorbox() on each, you need to use your selector. For example, $("denmark a").colorbox();
  12. ziggy hil's avatar
    ziggy hil
    | Permalink
    hey man this is AWESOME..exactly what i have been looking for. The only problem is my knowledge for doing anything web based is very limited ..as you can see - http://www.funns.com ive been having a play and honestly...i have no idea is it simple enough to explain to a mister no nothing like me? without wasting too much of your time if so then that would be amazing! im wanting this flickr http://www.flickr.com/photos/funns in the paint section of my website thank you ziggy
  13. ziggy hil's avatar
    ziggy hil
    | Permalink
    this bit is pretty much it http://www.funns.com/blog2.html but what bit do i use to put it inside my site?
  14. Andreas's avatar
    Andreas
    | Permalink
    Hi Joel, Fantastic! That is working better than I could have hoped for. Keep up the good work!
  15. Alberto Contreras's avatar
    Alberto Contreras
    | Permalink
    Joel, first: thx you very much for this excellent piece of code! second: the prob! (hehe) I'm working on my personal photograph porfolio and since I have pretty big images (1024x685) I need them to get pulled from Flickr and displayed on my site. There is a way to tell jQuerry Flickr to pull the original images from there? As far as I know Flickr keep a copy of the original one and it's called "_o" but can't figure out how to call it from your plugin. Any help will be deeply appreciated. Best regards! Cheers! And thanks!
  16. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Alberto, Flickr only allows the original photo to be pulled if you are using the API which requires a key. You would probably need to tweak the request in the plugin code to also authenticate with an API key. (This can MAYBE be done through the qstrings): http://www.flickr.com/services/api/misc.userauth.html You can read about the original sized format here and how there is more involved: http://www.flickr.com/services/api/misc.urls.html If you figure it out -- be sure to post a comment on what you changed. I will see if I can add it into the plugin or instructions.
  17. Alberto Contreras's avatar
    Alberto Contreras
    | Permalink
    Oh, thx for your quick response!. Gonna give it a shot to the API key through qstrings. I'm not a "advanced jquerier" by any chance but I'll let you know any progress I can come up with. Best regards,and again, thank you very much for your work and patience.
  18. Leslie's avatar
    Leslie
    | Permalink
    Is there a special way to add 'tags' into the qstrings? Sample: qstrings: { id: '48934342@N07' tag: 'BS2003' }, Am I missing anything?
  19. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Leslie, Yes there is. You need to use 'tags' instead of 'tag'. Here is the page on Flickr with the documentation for this: http://www.flickr.com/services/feeds/docs/photos_public/ There is also tagmode if you want to use more than one tag.
  20. Lonnie Minter's avatar
    Lonnie Minter
    | Permalink
    Am I able to pull from sets or does it only pull from the master photo feed? Thanks.
  21. Elizabeth's avatar
    Elizabeth
    | Permalink
    Thank you, thank you, thank you. This is exactly what I was looking for today!
  22. Jason Day's avatar
    Jason Day
    | Permalink
    Hi - great tutorial. What I'm looking for, that I can't seem to make work, is to pull a single image from flickr as a thumbnail that then opens the large version in a modal window (such as your colorbox example). Thanks
  23. Rob's avatar
    Rob
    | Permalink
    how can i pull from different sets? there is no option for sets here: http://www.flickr.com/services/feeds/docs/photos_public/
  24. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Rob, You can actually pull from any of the feeds: http://www.flickr.com/services/feeds/ Unfortunately it doesn't look like sets are available as a feed. You'll probably need to go through the Flickr API route if you need sets.
  25. Brian McCulloh's avatar
    Brian McCulloh
    | Permalink
    This line will not validate in an html validator: itemTemplate: '<li><a rel="colorbox" href="{{image}}" title="{{title}}"><img src="{{image_s}}" alt="{{title}}" /></a></li>' How can I get this to validate? The error is "document type does not allow element "li" here". Regards, Brian
  26. Brian's avatar
    Brian
    | Permalink
    Figures - messed with this for an hour, couldn't figure it out, posted my comment, then figured it out on my own 5 minutes later. The fix is to "comment out" the javascript using "<!--" and "// -->" so the validator doesn't see it. Fundamental oversight - my mistake. Great plugin - thanks! Brian
  27. Kyle Mark's avatar
    Kyle Mark
    | Permalink
    This looks excellent and I'd like to try it. One question & I'm new to this so please forgive me if it's common knowledge... Is there a way to grab flickr photos using a specific tag from a specific account? Example: 20 images in flickr, 8 tagged 'portfolio', can I specify load just the ones labeled 'portfolio'? If so, can someone point me to an example or explain? Thanks in advance.
  28. Rob Che's avatar
    Rob Che
    | Permalink
    Great code. I've been looking for ages for a lightweight codebase - ad this fits the bill perfectly. THANKS for sharing. Rob
  29. Rob Che's avatar
    Rob Che
    | Permalink
    Does anyone know a way to pull the thumbnails a different size? ie: bigger! Cheers Rob
  30. Tiago Vieira's avatar
    Tiago Vieira
    | Permalink
    Hi Just a minor contribution: ADDING GROUP PHOTOS If you want to add group photos, you need to: 1- Get the group ID: http://get-flickr-id.ubuntu4life.com/ 2- Open jflickrfeed.min.js 3- find 'photos_public.gne' and replace with 'groups_pool.gne' 4- Open setup.js and replace your ID That's it!
  31. Jeremiah Castillo's avatar
    Jeremiah Castillo
    | Permalink
    Any one having problems with IE7.
  32. lyn beeran's avatar
    lyn beeran
    | Permalink
    this is very great. i have needed to install multiple flickr feeds on my site. but i am wondering before i spend hours combing the internerd if you could tell me if it's possible with your system to include a feed of favourites from a particular user?
  33. lyn beercan's avatar
    lyn beercan
    | Permalink
    oops incomprehenible -try again <br> <br> --i copied jflickrfeed.js to jflickrfeed2.js <br> <br> --in jflickrfeed2.js on line 10 i added a '2' $.fn.jflickrfeed = function(settings, callback) { $.fn.jflickrfeed2 = function(settings, callback) { <br> <br> --on line 13 i changed: feedapi: 'photos_public.gne', to: feedapi: 'photos_faves.gne', (from http://www.flickr.com/services/feeds) <br> <br> --then in this section in setup.js i just added the '2' there: $('#exex').jflickrfeed2({ limit: 44, qstrings: { id: '51341535@N05' }, itemTemplate: '<li>' '<a rel="colorbox" href="{{image}}" title="{{title}}">' '<img src="{{image_s}}" alt="{{title}}" />' '</a>' '</li>' }, function(data) { $('#exex a').colorbox(); }); <br> <br> --i'm pretty sure that's it!
  34. lyn beercan's avatar
    lyn beercan
    | Permalink
    sorry, it just stays garbled. ----------but what i wonder now is how to add an api key, i assume this is the way to override flickr's 20 pic limit.
  35. felipus's avatar
    felipus
    | Permalink
    Hi, this plugin is just amazing. Can it be used with a specfic set of Flickr (each set has a unique feed)? If so how? (I'm not fluent with js). Thx!
  36. Ben's avatar
    Ben
    | Permalink
    Hey there - after searching high and low, this is the best jQuery / Flickr plugin I've found. However I'm unable to pull in more than 20 photos. I've checked all the code (and yes, changed the limit variable :) ) but I just can't get more than 20. Any suggestions?
  37. Kyle's avatar
    Kyle
    | Permalink
    great work with this plugin. so so so close to what I was looking for. between this and http://github.com/rpheath/jquery-flickr I can almost do what I need, sadly I would need API func, and the linked project isn't chainable (and hasn't been maintained). I'd love to be in the loop if you ever update this script for the API!
  38. Mike K.'s avatar
    Mike K.
    | Permalink
    Hi Joel,

    Quick question...how do I make it so that the images, when clicked, open up in another window? Thanks so much for your great, descriptive tutorial!

    Thanks!
  39. Laurent Abbal's avatar
    Laurent Abbal
    | Permalink
    Great code! Thanks!
    Here, the solution if you want pictures from a set.

    1. In jflickrfeed.js and jflickrfeed.min.js change feedapi : feedapi:'photoset.gne'

    2. In the script change qstring : qstrings: {set: 'yoursetid', nsid: 'yournsid'},

    3. That's it!

    If your want display several sets on a single page, change the rel in the link : <a rel="yoursetid" href=... and change fonction(data) like this : $("a[rel='yoursetid']").colorbox();
  40. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Wow -- thanks Laurent! That should be really handy for people!
  41. DharmaLove's avatar
    DharmaLove
    | Permalink
    Laurent / Joel, I can't get mine to work with sets. Do you see anything wrong w/ this code?

    $('#basicuse').jflickrfeed({
    limit: 14,
    qstrings: {
    set: '72157625009482824',
    nsid: '76986464@N00'
    },
    itemTemplate:
    ''
    ''
    ''
    });

    You can see my id's in this link:
    http://api.flickr.com/services/feeds/photoset.gne?set=72157625009482824&nsid=76986464@N00&lang=en-us

    thanks for your help, and Joel, thanks for the great code!
  42. marcus's avatar
    marcus
    | Permalink
    hey DHARMALOVE i'm trying to do the same thing (trying to pull out a specific SET rather than my photostream) .. will let you know when i figure this out. let me know if you crack this too! [= -marcus (ilyrae@gmail.com)
  43. marcus's avatar
    marcus
    | Permalink
    JOEL how to i post sets? you mentioned to a previous posting that we use flickr api to pull images from a SET .. how is that specifically done?
  44. marcus's avatar
    marcus
    | Permalink
    DHARMALOVE .. a temporary fix to replace pulling in a SET is to TAG the photos you want .. using this method (say you want to post only pics tagged 'flowers):

    qstrings: {
    id: '76986464@N00', tags:'flowers'
    }

    works perfect [=
  45. Ammy's avatar
    Ammy
    | Permalink
    Thank you SO much for this! I followed Laurent's advice for the sets and it worked perfectly. Awesome script; love it. :)
  46. Kevin's avatar
    Kevin
    | Permalink
    So how do I control the order of the pictures in my set? I have them in the order I want them on Flickr, but they get jumbled when pulled in by the script.
  47. Matt's avatar
    Matt
    | Permalink
    @Joel,

    Hey I was wondering why on my page for some reason I am only getting 21 images to appear.

    I have plenty of sets that have images in them that are tagged "tour images"

    I clearly have more that 21 to display.

    Is there something that I may have done wrong? I have set my limit to 200... but I still am only getting 21.
  48. Matt's avatar
    Matt
    | Permalink
    Is anyone else having this problem?
  49. Matt's avatar
    Matt
    | Permalink
    Is anyone here?
  50. Tim's avatar
    Tim
    | Permalink
    I'm also having problems wit the 20 picture limit (have modified the limit in JS). Is there anyway to either increase that or trick the feed in to dishing out the next 20 to another JSON box?

    Above all, love it - thank you very much!!!
  51. Tim's avatar
    Tim
    | Permalink
    Okay, so I've been over to Flickr and there doesn't seem to be a way of increasing the feed to more than 20. Can't trick the box either, you only get the last 20 pictures from your photostream. I'm just going to label mine as 'Latest Images' and then provide a link to the actual photostream.

    Thanks for this code again, brilliant! :)
  52. Shane's avatar
    Shane
    | Permalink
    @JOUL, I've managed to find a solution to the 20 picture limit problem. However, it doesn't use the plugin you've provided. It uses a combination of different plugins.

    The test page that proves that I have more than 20 photos is @ http://designshac.com/dsherman/test.php

    I want to use your plugin, I think it's better than what I current have, especially if you can get it to go past 20 photos. But the only problem is I love the Highslide lightbox. So if you could implement Highslide with your plugin rather than Color Box, I would be sold.

    Because based on the plugins of my test page, there is no way to call the description of the photo. You wonderful plugin does this and that is a must for me.

    Any help on that?
  53. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Shane,

    The link you posted is using an API Key. There are more methods available when you use that.

    This plugin does not depend on colorbox. Notice that I am calling that separately after I load the flickr pictures.
  54. ali's avatar
    ali
    | Permalink
    How do you pull in a public group? I have created a public group for anyone to post to but I can only seem to pull in my full feed. Any chance you can help. Also do you know how I remove the email address nobody@flickr.com or change it. Your help would be greatly appreciated. Site is here:

    http://dribbblecards.co.uk/
  55. ali's avatar
    ali
    | Permalink
    Group is here: http://www.flickr.com/groups/1579702@N23/
  56. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Ali,

    Just change the feedapi value to 'groups_pool.gne'.

    You can use any of the public feeds in the Flickr API link above.
  57. Vlad's avatar
    Vlad
    | Permalink
    2 Alberto Contreras
    You can use {{image_b}} - it'll display image with 1024 px on the largest size - if you don't have super big images it should be enough
  58. Brad's avatar
    Brad
    | Permalink
    Anyone figure out how to raise the photo limit to more than 20 images? Is it even possible?
  59. fuzzonce's avatar
    fuzzonce
    | Permalink
    Hi.

    first, thanks for very good script.

    My problem is that I get the Flickr pictures as background of the tag , so I can always have the same size of the thumbs, regardless of the actual size of the photo on Flickr. However, trying to assign ownership inline (
    It 'can get around this?

    Thanks to all
  60. fuzzonce's avatar
    fuzzonce
    | Permalink
    oops


    the form field has eat a piece of my comment...

    The original comment was:

    my problem is that I get the pictures as background of flick, so you always have the same size, regardless of the actual size of the photo. However, trying to assign ownership inline (li style = "url (href =" image_m {{}} ") no-repeat ...), everything that should be assigned to the style, I will be deleted. The end result is li style = "" .... It 'can get around this?
    Thanks to all
  61. Drew's avatar
    Drew
    | Permalink
    I see you have an itemCallback parameter. Anyway to have a parameter to Callback once all images load from the flickrfeed? Kind of like an "AllDoneCallback".
  62. Joel Sutherland's avatar
    Joel Sutherland
    | Permalink
    Drew,

    Great idea -- I'll work on adding that.
  63. Guillermo's avatar
    Guillermo
    | Permalink
    I'm trying to show a group but i just can't. It works perfectly with simple albums but not with groups. I must say i changed the line in the .js file like it's explained here:
    http://www.gethifi.com/blog/a-jquery-flickr-feed-plugin#comment-d043cc13b7034bdaa1ef683a7f62e280

    And i entered the group id like this:

    qstrings: {
    id: '1612197@N22'
    },

    Any clue?
  64. Guillermo's avatar
    Guillermo
    | Permalink
    Me again. I checked the situation with firebug, and as far as i understand the feed "works". But i have no image retrieved. See this:


    jsonp1292540567535({
    "title": "Mural de La Casa del Rio",
    "link": "http://www.flickr.com/groups/lacasadelrio/pool/",
    "description": "Imagenes subidas por huespedes del hotel La Casa del Rio.",
    "modified": "1970-01-01T00:00:00Z",
    "generator": "http://www.flickr.com/",
    "items": [
    ]
    })

    That is the response to this call, generated by the jflickrfeed plugin:
    http://api.flickr.com/services/feeds/groups_pool.gne?lang=es-us&format=json&jsoncallback=jsonp1292540567535&id=1612197@N22

    So, give me a rope. What's wrong with my group?
  65. Guillermo's avatar
    Guillermo
    | Permalink
    Nevermind. It seems like this is happening because the group is new. I'll have to wait 24 hs.
  66. Adrian's avatar
    Adrian
    | Permalink
    Didnt work with jquery 1.4.4 and 1.4.3. With Jquery 1.4.2 works fine :)
  67. itadakimazu's avatar
    itadakimazu
    | Permalink
    Thanks for this super useful script Joel!

    I just wonder if it's technically possible to link each photo to its flickr page (ex: flickr.com/photos/username/XXXXXXXX) instead of farm4.static.flickr.com/XXXXXXX?
  68. e11world's avatar
    e11world
    | Permalink
    This is a great script Joel! Thank you very much for the help and for the great comment from Laurent Abbal. I got this working with colorbox (since I was using it already) and able to load different sets from different users even though code seems to longer (about 10 lines per set) but still, it works great.
    I hope someone or Flickr can remove the 20 picture limit on this, otherwise I will have to upload 20 imgs per set from now on. This is where my progress is if anyone wants to see the code http://www.georgeelias.net/media.html

    I also wonder about itadakimazu's comment (img link)
  69. Sam's avatar
    Sam
    | Permalink
    DISPLAYING MORE THAN 20 PICTURES:

    I know, that's a serious limitation, right? Here's my fix, albeit a bit clunky.

    Create multiple which each one tied to its own jquery command. Then, inside each jquery command, add the qstring 'tags:example_tag' for the first set of 20, 'tags:example_tag2' for the second set, and so on.

    On flickr, go into organizr and grab the first twenty photos you want, add the tag 'example_tag' (or whatever) to the first 20, then add 'example_tag2' to the next 20 and so on.

    Your HTML will look like this (note I'm using the colorbox plugin as well)



    ...etc.

    And your jQuery will look like this:

    $('#cbox').jflickrfeed({
    flickrbase: 'http://api.flickr.com/services/feeds/',
    limit: 20,
    feedapi: 'photos_public.gne',
    qstrings: {
    id: 'your_id',
    tags: 'example_tag'
    (rest of code omitted)

    $('#cbox1').jflickrfeed({
    flickrbase: 'http://api.flickr.com/services/feeds/',
    limit: 20,
    feedapi: 'photos_public.gne',
    qstrings: {
    id: 'your_id',
    tags: 'example_tag2'
    (rest of code omitted)

    For the ambitious, make jflickrfeed a function with 'tags' as the variable, then run it however many times you need (x/20 rounded up, where x is how many photos you have) with a FOR loop. Bam!
  70. Sam's avatar
    Sam
    | Permalink
    DISPLAYING MORE THAN 20 PICTURES:

    I know, that's a serious limitation, right? Here's my fix, albeit a bit clunky.

    Create multiple which each one tied to its own jquery command. Then, inside each jquery command, add the qstring 'tags:example_tag' for the first set of 20, 'tags:example_tag2' for the second set, and so on.

    On flickr, go into organizr and grab the first twenty photos you want, add the tag 'example_tag' (or whatever) to the first 20, then add 'example_tag2' to the next 20 and so on.

    Your HTML will look like this (note I'm using the colorbox plugin as well)



    ...etc.

    And your jQuery will look like this:

    $('#cbox').jflickrfeed({
    flickrbase: 'http://api.flickr.com/services/feeds/',
    limit: 20,
    feedapi: 'photos_public.gne',
    qstrings: {
    id: 'your_id',
    tags: 'example_tag'
    (rest of code omitted)

    $('#cbox1').jflickrfeed({
    flickrbase: 'http://api.flickr.com/services/feeds/',
    limit: 20,
    feedapi: 'photos_public.gne',
    qstrings: {
    id: 'your_id',
    tags: 'example_tag2'
    (rest of code omitted)

    For the ambitious, make jflickrfeed a function with 'tags' as the variable, then run it however many times you need (x/20 rounded up, where x is how many photos you have) with a FOR loop. Bam!
  71. Ilja's avatar
    Ilja
    | Permalink
    Ok, I am close to get beyond the limitation of 20. It seems to work (you need an api-key for it), but for some reason the json is interpreted as text/plain and thus rendering an error. Not yet figured out how to solve that.

    This is how I did it:

    $(document).ready(function(){

    $('ul.blokkendoos').jflickrfeed({
    flickrbase: 'http://api.flickr.com/services/rest/',
    feedapi: '',
    limit: 14,
    qstrings: {
    method: 'flickr.people.getPublicPhotos',
    api_key: 'ece11208f56cd80fd36f32ad49d1b911',
    user_id: '58632700@N04',
    extras: 'description,title',
    format: 'json'
    },
    itemTemplate: ''
    }, function(data) {
    $('#gallery-nav').galleriffic({
    numThumbs: 50,
    imageContainerSel: '#portfolio',
    captionContainerSel: '#caption',
    enableBottomPager: false,
    renderSSControls: false,
    renderNavControls: false,
    defaultTransitionDuration: 200,
    onSlideChange: function(prevIndex, nextIndex) {
    this.find('ul.blokkendoos').children()
    .eq(prevIndex).fadeTo('fast', 1.0).end()
    .eq(nextIndex).fadeTo('fast', 1.0);
    },
    onPageTransitionOut: function(callback) {
    this.fadeTo('fast', 1.0, callback);
    },
    onPageTransitionIn: function() {
    this.fadeTo('fast', 1.0);
    }
    });
    });

    });

    As you can see I also try to use galleriffic to show the images and I just cannot get it to work. It seems that the list-items are not added to the dom when galleriffic is activated. Even though I activate galleriffic using the callback function.

    Am I doing something wrong?
  72. Ilja's avatar
    Ilja
    | Permalink
    Ok, I am close to get beyond the limitation of 20. It seems to work (you need an api-key for it), but for some reason the json is interpreted as text/plain and thus rendering an error. Not yet figured out how to solve that.

    This is how I did it:

    $(document).ready(function(){

    $('ul.blokkendoos').jflickrfeed({
    flickrbase: 'http://api.flickr.com/services/rest/',
    feedapi: '',
    limit: 14,
    qstrings: {
    method: 'flickr.people.getPublicPhotos',
    api_key: 'ece11208f56cd80fd36f32ad49d1b911',
    user_id: '58632700@N04',
    extras: 'description,title',
    format: 'json'
    },
    itemTemplate: ''
    }, function(data) {
    $('#gallery-nav').galleriffic({
    numThumbs: 50,
    imageContainerSel: '#portfolio',
    captionContainerSel: '#caption',
    enableBottomPager: false,
    renderSSControls: false,
    renderNavControls: false,
    defaultTransitionDuration: 200,
    onSlideChange: function(prevIndex, nextIndex) {
    this.find('ul.blokkendoos').children()
    .eq(prevIndex).fadeTo('fast', 1.0).end()
    .eq(nextIndex).fadeTo('fast', 1.0);
    },
    onPageTransitionOut: function(callback) {
    this.fadeTo('fast', 1.0, callback);
    },
    onPageTransitionIn: function() {
    this.fadeTo('fast', 1.0);
    }
    });
    });

    });

    As you can see I also try to use galleriffic to show the images and I just cannot get it to work. It seems that the list-items are not added to the dom when galleriffic is activated. Even though I activate galleriffic using the callback function.

    Am I doing something wrong?
  73. Tomas's avatar
    Tomas
    | Permalink
    Did anybody figure out a good solution to the 20 picture limit yet?
  74. CubixVision's avatar
    CubixVision
    | Permalink
    ColorBox functions doesn't seem to work with jquery-1.4.4
  75. CubixVision's avatar
    CubixVision
    | Permalink
    ColorBox functions doesn't seem to work with jquery-1.4.4
  76. John Paul's avatar
    John Paul
    | Permalink
    ColorBox functions doesn't seem to work with jquery-1.4.4
  77. jason day's avatar
    jason day
    | Permalink
    Any word on integrating with an api key to return more photos?
  78. Samuel Hartman's avatar
    Samuel Hartman
    | Permalink
    For those having trouble with the colorbox plugin, make sure you download the latest version: http://colorpowered.com/colorbox/

    See my crazy hack of flickrfeed here: http://www.clarksvilleschwinnracing.com/gallery.html
  79. Ansimuz's avatar
    Ansimuz
    | Permalink
    Hi

    I am trying to integrate a plugin like lightbox or prettyphoto to the thumbnails feed but wont work.

    any ideas

    heres the code for the template i am using with no luck:

    itemTemplate:
    ''
    ''
    ''


    thanks
  80. harika's avatar
    harika
    | Permalink
    I like this:) very good:) thank you
  81. Charlotte Coleman's avatar
    Charlotte Coleman
    | Permalink
    Thanks, I've been trying to find a decent plugin for ages. It's really helpful!
  82. Ankara Nargile's avatar
    Ankara Nargile
    | Permalink
    tahnk you very much,i like this share
  83. zack's avatar
    zack
    | Permalink
    When using colorbox, what is defining the size of the photo? I have everything set up correctly to view in colorbox, however, something other than colorbox is resizing the photo. I know colorbox is not the culprit as I have all the sizing functions set to 'false' and I set up another gallery to test. In my test gallery, colorbox does not resize the photo.

    My Flickr gallery, on the other hand, appears exactly as it does in your example -- much smaller than the actual photo size. I cannot figure out what is reducing the photo size and how to override that.
  84. Markuza's avatar
    Markuza
    | Permalink
    Thanks so much! Easy to implement and now updating my galleries won't be a chore. Bummer about the 20 image limit on the feeds, and it would be nice if they supported sets, but I'm not ready to dive into the API at this point.
  85. Victor Augusto's avatar
    Victor Augusto
    | Permalink
    It's possible to make thumbs and the colorbox image bigger? thanks
  86. Daniel's avatar
    Daniel
    | Permalink
    Wow, that was helpful. Thank you for such clear code and instructions. Just what I was looking for! :)
  87. Miriam's avatar
    Miriam
    | Permalink
    Awesome awesome toll
    did anyone find out how to make the thumbnails bigger?
    please help
    THANKS
  88. Miriam's avatar
    Miriam
    | Permalink
    *tool :)!
  89. bern's avatar
    bern
    | Permalink
    Great plugin, Joel. Have looked through Colorbox forum but stuck on hyperlinking the TITLE to the photo's page on Flickr. Any suggestions?
  90. gutierrezalex's avatar
    gutierrezalex
    | Permalink
    Is it me, or is this not working for Google Chrome on OSX
  91. Gary's avatar
    Gary
    | Permalink
    What a great idea, the possibilities for this type of thing are pretty big. Allowing me to consolidate all my media within social applications rather than having them scattered across the web!
  92. Mik's avatar
    Mik
    | Permalink
    As I can do to show pictures of an album rather than a user?

    Sorry, my english is bad.. lol
  93. Morad's avatar
    Morad
    | Permalink
    Fantastic stuff ! , Great possibilities.

    Thanks so much :)
  94. LD's avatar
    LD
    | Permalink
    I was implementing this plugin(which is great by the way) and was having trouble increasing the picture size in Colorbox(I was using Fancybox instead). The size mods from Flickr within the plugin changed the thumbnail size but not the actual picture generated in Colorbox(from small to large). I found a neat fix to this from this guy at

    http://trevordavis.net/blog/improving-a-flickr-plugin-
    with-jquery

    Just modify setup.js right before calling Colorbox with:

    $("ul#cbox a").each(function() {
    var imgSrc = $(this).children().attr('src');
    $(this).attr('href', imgSrc.replace('_s.jpg', '_b.jpg'))
    });
  95. Paul's avatar
    Paul
    | Permalink
    There was a question earlier about just pulling images from a specific set and the answer seemed to be a work around via tags. I wanted to add an RSS image feed to my site based on my iPhone (sorry) images Flickr rated as most interesting. Here's what I did...

    1. Go to Dopiaza.org and create an automated 'most interesting' set for my stream (today is day 1 so will need to monitor how it works).

    2. Leave the jquery js script unaltered.

    3. Go to Flickr and view the automatically created set URL which for me is http://api.flickr.com/services/feeds/photoset.gne?set=72157627368947868&nsid=63085897@N02&lang=en-us

    4. Amend the script within my webpage http://www.iphone.photogenix.biz/ as follows:

    $(document).ready(function(){
    $('#cbox').jflickrfeed({
    feedapi: 'photoset.gne',
    limit: 14,
    qstrings: {
    set: '72157627368947868',
    nsid: '63085897@N02'
    },
    itemTemplate: ... (used in conjunction with colorbox)

    Seems to work a treat for me - does this answer some of the issues?? I'm not a programmer at all - just stumbled across it. Hope it helps.
  96. Joel Urbina's avatar
    Joel Urbina
    | Permalink
    What a brilliant, simple plugin!
    Thank you for this... may make a few changes before I use it (nothing that big, just to make it work a little bit differently for me), but I'm loving what I see! Good work!
  97. Eberth's avatar
    Eberth
    | Permalink
    I change the colorbox for fancybox, everything is ok in chrome, firefox, also in the blackberry explorer, but it doesn't work with IE, any idea?
  98. pixel's avatar
    pixel
    | Permalink
    Any ideas how to randomise the photos it pulls?
  99. Mersin Nakliyat's avatar
    Mersin Nakliyat
    | Permalink
    good share.thank you so much
  100. website designer peterborough's avatar
    website designer peterborough
    | Permalink
    great post, really cool post.
  101. Marty's avatar
    Marty
    | Permalink
    Trying to get this to work with tags. It pulls my feed if i just use my id in the qstring, but when I add tools to the qstring it breaks. Code is the same as demo, apart from the tags qstring.

    Code:
    $('#basicuse').jflickrfeed({
    limit: 2,
    qstrings: {
    id: '48068648@N06',
    tags: 'tools'
    },
    itemTemplate:
    ''
    ''
    ''
    });
  102. Martin's avatar
    Martin
    | Permalink
    Thank you for a nice plugin :)!
  103. Adam's avatar
    Adam
    | Permalink
    how can images appear randomly?
  104. Robert Scozzari's avatar
    Robert Scozzari
    | Permalink
    Need to randomize the photos as well. Any suggestions?

    Thanks
  105. Kieran Delaney's avatar
    Kieran Delaney
    | Permalink
    Just wanted to start off by saying how much I like this plug-in. I had been using lightbox, but was growing tired of having to generate thumbnails and full size images for every image being added to the group. This is amazingly simple to use and has come in very handy so far. So, thank you.

    Here's the problem I'm running into though, I can't figure out how to get it to display the most recently added photos. I incorporated the plugin into a site I did for a friends tattoo parlor (www.nativerituals.net) so that each artist could keep their portfolios current, but the newer images they're uploading just aren't showing up.

    Is there a way to set it up so that the images displayed are shown from newest to oldest?

    Thanks again.
  106. Moss's avatar
    Moss
    | Permalink
    Has nobody noticed that this breaks your HTML if photo descriptions have links in them? How can this be fixed?
  107. Sascha's avatar
    Sascha
    | Permalink
    Fantastic, thank you!
  108. Falesco's avatar
    Falesco
    | Permalink
    Hi guys,

    I installed the script on my website but it only shows 1 picture from flickr.. if i upload a new one it doesnt show... this is what i did:

    $(document).ready(function(){

    $('#flickrfeed').jflickrfeed({
    limit: 12,
    qstrings: {
    id: '69573883@N08'
    },
    itemTemplate: ''
    });

    $('#nocallback').jflickrfeed({
    limit: 4,
    qstrings: {
    id: '69573883@N08'
    },
    useTemplate: false,
    itemCallback: function(item){
    $(this).append("");
    }
    });

    });
  109. Bitbyte's avatar
    Bitbyte
    | Permalink
    Hi guys.. i only get 1 photo from flickr on my website.. what did i do wrong? i got more photo's uploaden but they dont show up...


    $(document).ready(function(){

    $('#flickrfeed').jflickrfeed({
    limit: 12,
    qstrings: {
    id: '69573883@N08'
    },
    itemTemplate: ''
    });

    $('#nocallback').jflickrfeed({
    limit: 4,
    qstrings: {
    id: '69573883@N08'
    },
    useTemplate: false,
    itemCallback: function(item){
    $(this).append("");
    }
    });

    });
  110. Steven's avatar
    Steven
    | Permalink
    It only runs if you load jquery in the head. I'm using boilerplate - is there any way to have it run if you have jquery elsewhere?

    Please let me know thanks!!
  111. Steven's avatar
    Steven
    | Permalink
    I've been trying for forever, but the titles aren't showing up properly. I just get file names even if I change the title in flickr. When I cross check with other plugins their titles have updated but this one not.

    Please help!
  112. Jason's avatar
    Jason
    | Permalink
    Where do i find my id? The example uses id: '44802888@N04', where did this come from?
  113. Rachel's avatar
    Rachel
    | Permalink
    Will this automatically refresh the feed when new photos are added? If so, how often? Thanks! Great plugin :) Makes working with Flickr a breeze.
  114. mark's avatar
    mark
    | Permalink
    For those asking about thumbnail size.


    Small:

    {{image_s}}


    Medium:

    {{image}}


    Large (if available):

    {{image_b}}


    apologies for the multiple posts - there's no preview, no delete options and it didn't show the code. Fingers crossed it works this time...
  115. Dianna's avatar
    Dianna
    | Permalink
    I loved this plugin until I realized the 20 image limit from Flickr. If anyone found a way to work around this, I would love to hear it. Thanks!
  116. Alice's avatar
    Alice
    | Permalink
    Great plugin - thanks!

    By the way those dogs are SO cute!! What breed are they?
  117. Aniket's avatar
    Aniket
    | Permalink
    Great plugin! works really well

    But I have an issue. I am using http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js instead of jquery 1.4.2 and the colorbox stops working. It just shows the overlay, thats it. doesnt show me the image also.

    can anyone help me?
  118. Fabricio's avatar
    Fabricio
    | Permalink
    hi, how do I use the id of my flickr album instead of my Flickr User ID?? Tks
  119. ivo's avatar
    ivo
    | Permalink
    It is good plugin, but it is not fantastic, due the 20 picture limit , I was searching the web and find this one: http://www.justinspradlin.com/programming/create-a-photostream-using-jquery-and-the-flickr-api/ , it has no picture limit and it is very easy to use.
  120. Friskies49's avatar
    Friskies49
    | Permalink
    @Aniket : I had the same problem, so I'm using http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js :)
  121. Phil's avatar
    Phil
    | Permalink
    Nice plugin, it works great, i'd like to use flickr album too instead of ID.
    Only one problem:
    i used to compress my js files with jgz, but colorbox doesn't work with it, don't know why, you can see flickr thumbs but cant open any pics.
    this is my experience, so be careful if you compress your js files in your server.
  122. Corbett's avatar
    Corbett
    | Permalink
    Thank you for this sweet set of code.

    1) download the latest colorbox to work with the latest jquery code. or alternatively, use a different lightbox code.

    2) I successfully got the "sets" feature working getting past the Flickr 20 photo limit plus using some creative code I have the lightbox grouping all of the photos into a single set for navigating.

    3) view the gallery I created here: http://bigrockanimalclinic.com/photos.php

    Thank you Joel for the code, and Laurent for the adjustments to sets. Works perfect!
  123. Corbett's avatar
    Corbett
    | Permalink
    Slight tweak to my code. To gather 3 "sets" of photos, I was using 3 different UL IDs which was causing overflow problems. Figured out that even though I can define the script 3 different times, I can have each instance target the same UL ID adding more LIs each time.

    So that is 3 Flickr sets, being called by 3 instances of the script, tarketing one single UL item. The view source on my page for the code.
  124. futures trading's avatar
    futures trading
    | Permalink
    I hope someone or Flickr can remove the 20 picture limit on this, otherwise I will have to upload 20 imgs per set from now on.
  125. Yutaro's avatar
    Yutaro
    | Permalink
    Hello Joel thanks your great code.
    Now I'm in the certain trouble that how can I use Flickr API option which is starts from "http://api.flickr.com/services/rest/?format=json&jsoncallback=?&api_key=".
    I've tried to rewrite couple of codes in the jflickrfeed.js
    Please let me fix it.
    Thanks reading.
  126. kenydo's avatar
    kenydo
    | Permalink
    Hi, i have a problème with upload to flickr from Iphone i have a message : this photo is currently unavailable,
    with another classic upload it working... can you help me ?
  127. Ross W's avatar
    Ross W
    | Permalink
    Hi there, I am pretty much finished a website and have successfully used this code.

    All I need is to know how to retrieve the images in the correct order. My flickr sets have around 60 images each, so the code retrieves 20 of them but in a random order. Ideally I would like it to select the first 20 images from my flickr set or to select them by date or any kind of order, just not random.

    Please help if you can, I am a bit behind the deadline with this one already.

    Thanks!! :)
  128. Adam's avatar
    Adam
    | Permalink
    Not played yet, can I use this to grab anybody's public photos with a specific tag ? and is there still a 20 photo limit ?
  129. Taylor's avatar
    Taylor
    | Permalink
    This post got me off to a great start, but I wound up using the sets solution found here:
    http://italktoomuch.com/2011/12/flickr-powered-slideshows-with-jquery/
  130. Duncan's avatar
    Duncan
    | Permalink
    It's possible but would much more development of the API authentication process - http://www.flickr.com/services/api/auth.spec.html.

    Using an API call such as http://www.flickr.com/services/api/flickr.photosets.getPhotos.htm you can retrieve a full list of photos from a photoset, but the output requires further simple processing to form a url - you can try it with the API explorer here http://www.flickr.com/services/api/explore/flickr.photosets.getPhotos
  131. Amber's avatar
    Amber
    | Permalink
    I have tried using this cycle gallery within iBox, however I when the ibox link is opened I only see the div that the gallery is in.

    Is there an autoplay or force play code that I can implement so it knows when it is open, or any other solution?
  132. Asif's avatar
    Asif
    | Permalink
    Colorbox is not working with flickr groups id.

    I have made necessary changes in both the jflickfeed.js

    flickrbase: 'http://api.flickr.com/services/feeds/',
    feedapi: 'groups_pool.gne'



    and in setup.js with the id of group Brisbane.

    Could you tell me how I can show group photos using colorbox.
  133. Julie's avatar
    Julie
    | Permalink
    Hey, this looks like a great plugin! However, I cannot get it to work! I am just getting blank li's ... what could I be doing wrong?
  134. cindy's avatar
    cindy
    | Permalink
    I'm looking for something similar except for Pinterest rather than Flickr. Thoughts?
  135. Mike's avatar
    Mike
    | Permalink
    Got this working to pull my public stream but i'm having a couple issues with the formatting.

    http://gnypac.com/example

    That is pulling the latest uploads but what I would like to do is make them all uniform size (fixed height) and then display them all on a single row with a sliding bar. Any help would be appreciated.
  136. Mike's avatar
    Mike
    | Permalink
    Actually figured out the size.

    http://www.flickr.com/services/api/misc.urls.html

    Just working on properly integrating it into my site now.
  137. olimax's avatar
    olimax
    | Permalink
    To get the a random selection from the first 20

    add this into the settings:
    shownum: 3,


    just before:

    $.each(data.items, function(i,item){



    add this:

    var theitems = data.items;
    for (var n = 0; n < theitems.length - 1; n )
    {
    var k = n Math.floor(Math.random() * (theitems.length - n));
    var temp = theitems[k];
    theitems[k] = theitems[n];
    theitems[n] = temp;
    data.items = theitems;
    }



    and change this:

    if(i < settings.limit){


    to this

    if(i < settings.shownum){
  138. Andrew's avatar
    Andrew
    | Permalink
    I am trying to implement this with the color box. But when I click an image, everything fades to black but the image doesn't pop up.

    Any ideas?

    I wasn't sure if something could be interfering. I do have jquery easing for my vertical scrolling, a slider and a horizontal accordion. I have light box working with it all but cant seem to get color box.

    Any ideas on how to implement it into light box?

    Thanks
  139. Amit's avatar
    Amit
    | Permalink
    How can we change thumbnail size to some specific size..
    I want to create my custom size thumbnail. Please help.
  140. Jon Schwab's avatar
    Jon Schwab
    | Permalink
    @Andrew - I had the same issue. It was due to an older version of the Colorbox plugin that was incompatible with jQuery beyond 1.4.2. The latest version of Colorbox works just fine.
  141. jim's avatar
    jim
    | Permalink
    Hey, is there a way to pull in images by date range? F.ex - from the last 1, 2 or 3 days?

    Any help would be great :)
  142. mrto2's avatar
    mrto2
    | Permalink
    How can we open a flickr photo in a new window while the link should be of original flickr page...
  143. Kristalin Chavdarov's avatar
    Kristalin Chavdarov
    | Permalink
    FIXED CODE for RANDOM!
    -----------------------------------------
    To get the a random selection from the first 20

    add this into the settings:
    shownum: 3,


    just before:

    $.each(data.items, function(i,item){



    add this:

    var theitems = data.items;
    for (var n = 0; n < theitems.length - 1; n ) {
    var k = Math.round(Math.random() * (theitems.length - 1));
    var randomiser = Math.floor(Math.random()*20);
    var temp = theitems[k];
    theitems[k] = theitems[n];
    theitems[n] = temp;
    data.items = theitems;
    }



    and change this:

    if(i < settings.limit){


    to this

    if(i < settings.shownum){
  144. Brennen's avatar
    Brennen
    | Permalink
    So what do I add to my actual HTML to get this to show up?

    http://gyazo.com/6fa4510734887cc200b37fda5137004c
    Image of code-
  145. Brennen's avatar
    Brennen
    | Permalink
    Figured it out, I want two sets of images, one for the images with the tag shirts, and one for the tag photography, how can I do this?
  146. jesse's avatar
    jesse
    | Permalink
    This has been asked before, but I never saw an answer. How do I get it to pull the images in the same order that I set on flikr when organizing the sets? It appears to order them by that arbitrary number flickr gives each image (flickr.com/photos/myaccountnumber@NO8/thisnumber). Otherwise, this works great Joel!
  147. Marco van Zomeren's avatar
    Marco van Zomeren
    | Permalink
    Thank you! Works nice with PhotoSwipe!

    http://thereforeiam.be/experimenting/with_flickr_and_photoswipe/
  148. zir's avatar
    zir
    | Permalink
    hi I have a question, I am putting a nav control on the thumbnail page, so that it user can navigates the rest of the images through the pages with thumbnail. how can I put the prev.and next? Please help.

    thank you
  149. Alec's avatar
    Alec
    | Permalink
    Has anybody figured out how to make a photo link to its individual photo link on Flickr itself?
  150. Richard Dale's avatar
    Richard Dale
    | Permalink
    Hi fantastic plugin. What would I need to change to get this working with jQuery version 1.9.1? I need to use this version of jQuery for another plugin.

    If you could help out I'd be very grateful.
  151. Mike's avatar
    Mike
    | Permalink
    I'm feeling rather stupid.
    Trying to use the plugin and having a hard time setting it up. I've got my Flickr ID and I've downloaded the plugin and have it hosted with my webhost in my root html folder.

    I'm trying to figure how and where to include code. I'm trying to use the colorbox plugin part.

    Any code go in the body? What in the head?

    I'm sorry for such a noob question. Ive read the comments here and see in the demo that there's what looks like javascript code but where is that supposed to be located?

    Thanks so much
  152. David Rousseau's avatar
    David Rousseau
    | Permalink
    WOW, thanks Joel... and Donald for the Set version, worked like a charm !
  153. Somedude's avatar
    Somedude
    | Permalink
    Please publish this on Github !
  154. dhaval's avatar
    dhaval
    | Permalink
    my question is simple as i never used group feed option for flickr

    I have just started new (public) group and tried to retrieve images to my website via jflickrfeed.min plugin changed photos_public.gne to groups_pool.gne.

    But still the images are not coming.
    Instead my personal profile images are working perfectly.

    My question is :
    Is there any rule that for new group one has to wait for some hours/day to start this photo feedings?
  155. RyanKivi's avatar
    RyanKivi
    | Permalink
    Is there a recommendation someone could make on how to make this compatible with a WYSIWYG editor? They all seem to wipe out the tags where the pictures are placed.

    Regards,
    RKivi
  156. Jeffery's avatar
    Jeffery
    | Permalink
    Someone essentially assist to make severely posts I would state.
    That is the very first time I frequented your website page and thus far?
    I surprised with the analysis you made to create this actual put up amazing.
    Great process!
  157. プラダ 財布's avatar
    プラダ 財布
    | Permalink
    UGG Australia has produced some unique and fun types in boots for girls - Classic Stripe UGG Boots really
    are a perfect illustration of this. If you've no idea about whether a pair of boots you want are real or otherwise not, it's advisable not to purchase them.
    Delicately wipe it using a damp material, will not brush
    it fiercely that has a brush, don't melt away the sneakers with boiled water, and use washing detergent and alkaline cleaning fluid to clean it with the same time.

Leave a Comment