Wordpress Netflix Plugin
I have created a plugin for Wordpress that lets you display information from your Netflix account. This includes movie titles and cover images from your queue, recommendations and recent activity.
Current Version: 3.1
Download: netflix-3.1.zip (zip file/ 5 kb)
Changelog
3.1:
Fixed image referencing issue.
3.0:
Implemented movie class.
Added netflix_movies function to retrieve movie objects based on feed.
2.2:
Fixed problem with image references.
2.1:
Added ‘Movies At Home’ feed option.
Set default feed to ‘Movies At Home’.
Fixed problem with raw titles and images.
2.0.2:
Fixed problem with differing movieid length.
2.0.1:
Fixed problem for Wordpress 1.5.x users when not including netflix_id in netflix() call.
2.0:
Integrated configuration into WordPress plugin section.
Added before/after option to add html before and after display.
1.0:
First version.
Instructions
- Download plugin and unzip.
- Upload the folder (netflix/) to your WordPress plugins directory inside of wp-content.
- Activate it from the plugins menu inside of WordPress.
- Configure your settings via the panel in plugins.

Your netflix id comes from your Netflix RSS feed. Login to your Netflix account and go to your queue. At the bottom of the page click the RSS link. Copy the id variable in one of the RSS links and paste it in the configuration panel.
Functions
netflix($number_movies, $feed, $display_type, $image_size, $before, $after, $netflix_id);
Example usage:
netflix();
or
echo '<ul>'; netflix(3, 'home', 'image', 'small', '<li>', '</li>', 'P11111111111111111111111111111111'); echo '</ul>';
netflix_movies($number_movies, $feed, $netflix_id)
Example usage:
$movies = netflix_movies(5, "queue");
echo '<table><tr>';
foreach ($movies as $movie) {
echo '<td>';
echo $movie->get_cover_image();
echo '</td>';
}
echo '</tr></table>';
Movie Object Functions
get_id() // get movie’s id
get_title() // get movie’s title
get_link() // get link to movie on Netflix website
get_description() // get movie’s description (includes image)
get_cover_image($size) // creates html img tag of movie’s cover image
get_cover_image_source($size) // creates source address of movie’s cover image
Live Examples: http://www.albertbanks.com/movies/
Parameters
$number_movies - number of feed elements displayed (default is 10)
$feed - personalized feed to use
home - displays movies you have at home (default)
queue - displays your movie queue in order
recommendations - displays your recommended movies
recent - display recent activity
$display_type - what to display.
title - stips text to just movie title (default)
raw - displays raw text from feed
image - display recent activity
$image_size - if $type is set to ‘image’ this defines the image size
small - small image (64px X 90px) (default)
large - large image (110px X 154px)
$before - html appearing before each entity
$after - html appearing after each entity
$netflix_id - specify your netflix id
There are a hundred and one plugins to get your queue. That’s trivial. Has anyone managed to script a way to *change* your queue?
You mean besides Netflix?
There are plenty of standalone applications, are you saying you want a web-based version which is not the netflix website? why?
Almost works. Using text only or cover image (they do display) but I’m getting
Warning: Missing argument 7 for netflix() in /var/www/localhost/htdocs/blog/wp-content/plugins/netflix.php on line 13.
Any ideas?
Thanks!
You must set your netflix id in the configuration panel or include it as the 7th argument in the function call.
The configuration panel does not seem to work for me but adding all the parms in the function call did the trick.
BTW, I’m using WP 1.5.2.
Thanks!
Uploaded to plugins directory and it’s not showing up on the admin page. Any ideas? Do I have to configure before uploading?
Thanks.
The information at the top of the plugin that tells you the Author URI, the Plugin URI, etc… all needed to look like this before it would work for me:
Plugin Name: Netflix
Plugin URI: http://dev.wp-plugins.org/wiki/netflix
Description: This plugin displays info from your Netflix account. This includes text and images from your queue, recommendations and recent activity. Inspired by Jimmy Oliver’s MyNetflix Plugin
Version: 1.0
Author: Albert Banks
Author URI: http://www.albertbanks.com
That got the plugin to show up in my admin, and well, I’m about to see if it works past that point. Hope this helps.
Does this plugin work with WordPress 2.0?
Yes, this plugin was designed to work in WordPress 2.0.
When you enter the netflix ID for the variable, are you supposed to use quotes i.e. $netflix_id=”put-the-netflix-id-here” or no quotes i.e. $netflix_id=
Folks & Albert Banks, how did you get this plugin script to work? I activated and configured without any problem. I added the code:
in sidebar.php (default one) but nothing show up…. I tried everything but no luck. Again, how did you get this plugin script to work?
[sorry for double comment. removed the tag since the code area got disappeared]
Folks & Albert Banks, how did you get this plugin script to work? I activated and configured without any problem. I added the code:
?php netflix($number_movies, $feed, $display_type, $image_size, $before, $after, $netflix_id); ?
in sidebar.php (default one) but nothing show up…. I tried everything but no luck. Again, how did you get this plugin script to work?
I’ve been looking for a plugin like this that does exactly this. I can now show my queue and my recent viewings, I love it. Keep up the good work. A possible side idea is have the name of the movie also appear below the image.
[…] Cory and I were talking about how cool it would be to be able to add your Netflix At Home Queue to your Website and I just knew someone had to have made one. So I did some Googling and I think even some Yahooing and got real close when I found a dead link from a guy who made one. Then I found this site: Hacking Netflix, he had a RSS feed on his own site so I emailed him and he sent me this link. […]
[…] Added Albert Banks’ Wordpress Netflix plugin to the website… Now you can see all the depraved films I rent. Enjoy. […]
Albert-
After installing your plugin, and activating it, I am receiving the following error. I am calling the script in my sidebar as:
Warning: Invalid argument supplied for foreach() in /home/t/h/thinkdreams.com/html/blog/wp-content/plugins/netflix.php on line 45
Any ideas why this might happen? I cannot seem to get it to work properly. It’s very confusing, because all the other plugins I’ve tried seem to work OK.
Thanks for your time.
Sharshan
Is there a way to integrate the plugin into a Page? Basically I want to setup a Netflix ‘Page’ and list out my queue, movies at home, etc all on 1 page.
[…] I found the plug-in for the Netflix thingy here. […]
In the “recent” feed, how can I get it to import the info that labels a movie “Shipped” or “Received”? I’d like to be able to display that status in my feed to differentiate between movies that appear in that list. Thanks!
nevermind, figured that out with a simple php edit.
I couldn’t get it to show up in my Plugins manager either (therefore couldn’t activate it) and was banging my head on the desk until I suddenly realized the problem…
I was uploading it to my father’s wordpress site, not my own. DOH!
Once I got it where it was supposed to be, it worked beautifully.
I do wish there were some way to detect when Netflix is sending through an “Image Not Available” graphic and if so, dodge out of displaying the image and instead display the text title.
Thanks for the plugin!
[…] WordPress Netflix plugin. Identifies the movies that are currently at home by querying Netflix and then using the cover images from Amazon.com. […]
I just made a widget wrapper to make your Netflix plugin into a widget for Sidebar Widgets. Enjoy.
http://ongoingprocess.net/netflixwidget/
[…] Netflix Plugin - Displays my current Netflix rentals. […]
[…] Chris sent in a Netflix widgetizing plugin for Albert Banks’ Netflix plugin. You can see it at work on Chris' blog, showing his current rentals from Netflix. […]
Erm, having some permalink issues. Make that http://ongoingprocess.net/projects/netflixwidget/
[…] Netflix Let everyone know what movies you have queued up in your Netflix account. […]
Just to let everyone know, my hosting provider did not support fopen() or cURL calls, nor any type of call to an outside source for XML. I’ve since moved to Dreamhost, and wow. What a great webhost. The plugin works great. You can see it at http://www.thinkdreams.com/blog.
[…] Easy! If you’re using WordPress to power your blog. Download the Netflix plugin, unzip it and upload it into your /wp-content/plugins/ folder. Then go to ‘Plugins’ in your WordPress admin center and activate it. You can configure it by going to the ‘Netflix’ tab in the ‘Plugins’ section of your WordPress admin center. You will need to know your Netflix id - you can obtain that by going to netflix.com (make sure you’re logged in to your account, scoll to the footer and click on RSS. Under ‘Personalized Feeds’ you will see a URL that includes a long string of numbers - that is your id. Just copy and paste it. Now just include the following code in sidebar.php to show your Netflix queue. Brilliant! […]
[…] Netflix: Displays info from our Netflix account. […]
Is this ‘widget’ friendly? I can take the php code and add it to the sidebar.php and it works, but when I attempt to put the same code in a widget, nothing comes through. Any help?
[…] One of the hurdles was getting the right side column to display everything that I wanted. I was using a great plug for Wordpress called “Sidebar Widgets” from Automattic, Inc. that was allowing me to very easily configure and move the code around in modules, but when I got to the Netflix plugin by Albert Banks it was like beating my head on a wall because it just would not work within the widget. […]
[…] Using Albert Banks‘ cool plugin, I’m now able to display the movies I have checked out from Netflix. I had to play around with the CSS but it all went in OK I think. […]
I was wondering if this could be hacked to use with the Blockbuster service.
Thanks,
Phil
[…] This is my favorite plugin so far, even cooler than the Netflix one! […]
I got the plugin to work alright, thanks it looks great, but big problem (and it might be a netflix thing and not your plugin) is that I see my feeds are way outdated by perhaps a month. when i click on my feed it shows it up to date, but the plugin shows it a month or more behind.
I had another netflix plugin before (my netflix, I think) and it did the same thing. That plugin used to work fine.
…p.s. any ideas you might possibly have that could cause this, would love to hear!
To answer a few questions…
No, this is not yet widget friendly.
No, this does not with Blockbuster’s service. Since I do not have a subscribtion with them, I will not be adding that feature at this time.
As far as outdated feeds, you should first verify the literal RSS feed from Netflix. Login to your Netflix account and go to your queue. At the bottom of the page click the RSS link. Then click on the RSS file you use for the plugin. This is the file the plugin reads from. If the feed is outdated, this is due to Netflix not the plugin. Another issue could be your cache settings.
I will be making some additions/changes soon. Thanks for your patience.
[…] For those of you that blog with WordPress and subscribe to Netflix, a fellow by the name of Albert Banks has created a WordPress Netflix plugin that will display the movies you have at home on your blog, much like the one that is now on my sidebar. All you need is the plugin and the RSS feed from your Netflix account and you’re ready to go. This plugin can also be modified to display your current movie queue, recent rental activity, and your recommendations. […]
Hi Al,
I’ve installed and activated your plug in. I have also set the netflix config.
I pasted the most basic code into my sidebar.php page but it does not appear to be working.
Was there something that needed to go in between this () in the code?
Thanks in advance.
J.
I have the plugin up and working, it’s wonderful.
However, I am wondering when it will update. I have added movies to my queue and they are not in my netflix-page on my blog. Your thoughts?
Great plugin. I love it.
The only problem I’ve had with the plug-in is that when Netflix shuts down to update its servers it leaves this error when you are Firefox…
Fatal error: Call to undefined function: error() in /homepages/38/d147694201/htdocs/clockworkhalo/wp-includes/rss-functions.php on line 79
and for some reason it makes my entire sidebar disappear in Internet Explorer. Something for you to think about if you plan on releasing any future versions of this.
And yet another update…
Yet another cool little plugin I encountered on my trip through the cyber universe brought to life by Albert Banks. This one takes information from your Netflix Queue and allows you to post what movies you have at home, in the queue, recently rented, …
Is there a way to point the link to an Amazon site, using you amazon affiliate link id? I wanna use the netflix queue to lead readers to the amazon site and see if they would like to buy the DVD.
[…] I guess it has been a long time coming and a long time here, but I just had to blog about it once I finally got it up and running. Thanks for the plugin Albert Banks. […]
[…] Netflix plugins - Displays info from your Netflix account. This includes text and images via RSS feed. By Albert Banks. Also, you need to install Netflix widget. (click here) […]
Iwant to cjheckl my queue
[…] Netflix Feeds - Lets you display information from your Netflix account. This includes movie titles and cover images from your queue, recommendations and recent activity. […]
How about being able to show BOTH the movie image and the name of the movie at the same time? I saw this asked above, but never saw it addressed.
nevermind, figured that out with a simple php edit.
[…] Netflix […]
Is there a way to show all items in a particular $feed?
Does this form work like a guestbook?
[…] Seems like the Cog Dog and teachinghacks.com having been doing a little sharing about their WordPress plugins, which I find extremely useful -so thanks. I have been talking a bit lately about some of the plugins I have recently discovered here, here, and here -but the following list is a quick and dirty look at what’s beneath the hood of bavatuesdays: 404 Notifier 1.0: This plugin will log 404 hits on your site and can notify you via e-mail or you can subscribe to the generated RSS feed of 404 events. Adjust your settings here. By Alex King. Aggregate 1.0: Allows you to place the contents of an RSS feed into your posts. By Rob Miller. Articles 1.1: Display posts in an ‘Articles’ list. To include a post in the list, add a custom field to the post: ‘article’ = ‘1′. By Alex King. BDP RSS Aggregator 0.4.10 (test): RSS Aggregator - collate RSS feeds and summarise to a page - updates regularly without the need for cron. By Bryan Palmer. Code Markup 1.1.1:: A filter that displays code blocks nicely while still allowing formatting. By Bennett McElwee. Exec-PHP 3.0:: Allows php code tags inside the content or excerpt of your posts and pages to be executed just as in usual PHP files. By Sören Weber. Kimili Flash Embed 1.1: Provides a wordpress interface for Geoff Stearns’ excellent standards compliant Flash detection and embedding JavaScript. By Michael Bester. Netflix 2.1 :Displays info from your Netflix account. This includes text and images via RSS feed. By Albert Banks. Optimal Plugin (formerly, OPML Renderer) : Renders valid OPML from any source as an expandable/collapsible list. By Dan MacTough. podPress: The podPress plugin gives you everything you need in one easy plugin to use WordPress for Podcasting. Set it up in ‘podPress’->Feed/iTunes Settings. By Dan Kuykendall (Seek3r). Share This: Let your visitors share a post/page with others. Supports e-mail and posting to social bookmarking sites. Thanks to Thomas McMahon for footwork on the URLs. By Alex King. Spam Karma 2: Reloaded: The only spam filter for WordPress. Period. Viper’s Video Quicktags:: Creates quicktags for embedding various video types, including those hosted at YouTube and Google Video, into WordPress. Uses the ButtonSnap class by Owen Winkler. By Viper007Bond. Wikipedia Link 0.1: With this plugin, you can link to Wikipedia entries just like within Wikipedia by simply enclosing the word you want to link with in double brackets. By Andreas Krennmair. WordPress Database Backup:: On-demand backup of your WordPress database. By Scott Merrill. WordPress Mobile Edition 2.0: Show a mobile view of the post/page if the visitor is on a known mobile device. By Alex King. WP-FLV 0.2: This plugin eases insertion of Jeroen Wijerings FLV Video Player By Roel Meurders. (PodPress does play FLVs, but this is still the slickest and most solid FLV player for WordPress) Brian’s Latest Comments 1.5.10: This shows an overview of the recently active articles and the last people to comment on them. By Brian Meidell. […]
[…] Only to realize that the images that I wanted to use were pulled in as a single object. What this means is that I can’t seperate the items without revamping the Netflix plugin that I’m using. […]
Hay, nice site. Ive been lurking on your blog for quite some time and just wanted to say you do a really great job. I love your blog and just wanted to take the time to comment and tell you how much I love your blog.
[…] Thanks Albert Banks! […]
How can i get two movie covers to show up side-by-side?
Thanks!
[…] Add Your Netflix Queue to WordPress: Brodrigu offers “How to Add Your Netflix Queue to WordPress”, taking advantage of the Magpie RSS Parser that comes in the latest version of WordPress. This technique can be used to incorporate feeds from other sites onto your WordPress blog. There is also a Netflix WordPress Plugin and Netflix Widget to make the process even easier. […]
Your instructions for installing the Netflix queue to WordPress says, “Usage: Add this php code to your template” but it doesn’t say which template. Assuming it’s sidebar.php I’ve tried in a half dozen locations but it doesn’t work. Is there a magic place it’s supposed to go? Thanks.
Pat - Most people put it in their sidebar.php, but it should work on other pages as well. Make sure the theme files you are editing are for the active theme.
Hi, How do I get to the member log in screen?
I love the plug-in, but what I’d like to do is make the images appear in TWO columns, not just one.
I looked at the code, but couldn’t figure how to do it.
If you have any ideas, give me a shout, I’d love to implement it.
I’m sorry for not responding sooner. Work as taken most of my time. I always had greater plans for this plugin, including most of your requests. I will be working on the next version shortly.
I get the following error:
Warning: Invalid argument supplied for foreach() in /home/content/n/i/c/nicjoel/html/wp-content/plugins/netflix/netflix.php on line 48
I’m using WP 2.1, Netflix 2.1, and the Netflix Widget. Any ideas?
I am SO close on this one… I uploaded it fine, then when I want to activate it, it asks me once:
Are you sure you want to activate this plugin: “netflix.php”?
then after I click yes, it reads:
Are you sure you want to activate this plugin: “”?
And I can click yes over and over and nothing happens. I am running the latest version of WP and this most recent addon of yours. Please tell me that this is an easy fix! Any ideas? Please let me know because this is one of the main reasons I am switching from MovableType to WP!
Thanks!!!
That’s awesome ! Thx !
sarahlopez1313@hotmail.com
ab8979@gmail.com
[…] Netflix Plugin - This is actually a sidebar widget/module but it allows you to easily display the movies in your queue, at home, etc. on Netflix with either the movie title or the movie poster (see the sidebar of this blog) […]
Very cool plugin, thanks for developing it.
I noticed as of yesterday that the Netflix cover images aren’t showing up on my blog. I can see you’re having the same issue. Any idea why?
Today I decided to add a Netflix plugin to my wordpress and found this page w/ download. I’ve got it working, but set to just show linked text of the movie title right now, due to the cover images not showing up. When I view the URL of the “not found” image that shows I get address like this:
http://cdn.nflximg.com/us/boxshots/small/ww.netflix.com/Movie/Little_Children/70052692?trki.jpg
If you edit that manually in the address bar, down to:
http://cdn.nflximg.com/us/boxshots/small/70052692.jpg
it will load the picture.
Possibly something in the code needs to be updated to make that same edit?
I just uploaded a new version (2.2) that should fix the image reference problem. Again, I’m working on a more advanced version, so check back soon.
Great. Thanks for fixing that so quickly.
Thank you so much for the fix so quick. Awesome, this is my favorite plug in of any that I have!
I finally got time to implement Wordpress Netflix Plugin 3.0. There is a new movie class and netfilx_movies function.
Albert, first of all, thanks for the great plug-in.
I have the plug-in display the smaller cover art images on my site. A while back, I noticed that some of the Netflix cover art images are different sizes. Most are 64×90, but some were 62×88, and this caused the list to look a little weird. So I edited your plugin code to override the image size and make all of them the same.
As this only happens with a few cover images, it is probably a rare problem. However, I thought others probably have seen it and it might be nice to specify an image display size within the plugin (for small and large) instead of relying on Netflix to be consistent.
I edited line 75 of your code. The example below works only for the small image size; new code to detect “large” image size being specified would be need for large image compatibility.
$display = “”;
Here is the code with the great than / less than removed:
$display = “img src=”http://cdn.nflximg.com/us/boxshots/”.$image_size.”/”.$movie_id.”.jpg” alt=”".$title.”" title=”".$title.”" width=”64″ height=”90″ /”;
Hi Albert,
I’m having an image referencing problem as well. Any suggestions?
http://www.cornerbirch.com
I’m also having the image referencing problem…
http://www.lizzilla.com/?page_id=233
Ohh, getting the following error message:
“Fatal error: Cannot redeclare class movie in /home/u2/ekrocker/evankrocker.com/html/wp-content/plugins/netflix/movie.class.php on line 0″
Any suggestions?
[…] Added a new sidebar element to the right. It shows what movie I have at home from Netflix currently and the next five that are up in my queue. Pretty slick plugin. You can get it here. […]
Can you tell me how you got the Images AND the synopsis for your recommendations (on the live sample page)? Your recommendations have the movie image, then the whole synopsis of the item. I can only figure out how to have images, or to have images and title by using “both” for the display type.
I tried using “raw” for the type in conjunction with the “recommendations” feed, but it only displays the title. Almost like the option isn’t recognized so it goes back to the default of title.
Thanks!
[…] Adds an Automattic, Inc. Sidebar Widget wrapper for Albert Banks’ Netflix plugin. […]
Hi there,
Love the plugin, thanks for making it available!
Do you know why Netflix sends the “image not available” graphic? Especially when one day real images shows up, and the next, they don’t?
I’m sure this isn’t a plugin issue, but if you know the cause, I’d appreciate it!
Thanks,
Jason.
Following up on myself, I edited the php file to change the line
if (preg_match(”#/(\d+)\?trkid=(\d+)#”, $link, $matches)) {
to
if (preg_match(”#/(\d+)#”, $link, $matches)) {
(that is, remove the “\?trkid=(\d+)” section, and my images have returned.
Does Netflix change their feed for no good reason to drop that trkid sometimes?
Jason.
For whatever reason when I tried Jason’s method (comment #84) it caused an error and my entire site ceased to display. Haven’t quite figured out why yet.
If it helps, here’s what that section looks like now for me:
if (preg_match(”#/(\d+)#”, $link, $matches)) {
$movie_id = $matches[1];
}
I’m using version 3.0 of the plugin, on WP 2.2.1
After playing around with it I believe I figured out what I did wrong. Apparently when I fiddling around with my site last time I accidentally loaded in the 2.1 version of the plugin rather than the 3.0 version, and modifying that line in the 2.1 version seems to screw up the coding of that plugin and caused my site to crash.
Jason’s changes (comment #84 and #86) does seem to work for me now that I installed the modified 3.0 version of the plugin. Thank you very much for you help.
Sorry, I’ve been late updating the plugin - I was on vacation. Thanks to Jason (http://jasonian.org/) for the fix. Netflix has often changed their linking to movies, so the code to determine the movie id has to be adapted every so often. Version 3.1 is up and ready for download.
Albert
Answer to Vanberge:
Once you run the netflix_movies function to retrieve the movies, you can use any of the functions in the movie class to retrieve information about that movie (ie. $movie->get_description()):
get_id() // get movie’s id
get_title() // get movie’s title
get_link() // get link to movie on Netflix website
get_description() // get movie’s description (includes image)
get_cover_image($size) // creates html img tag of movie’s cover image
get_cover_image_source($size) // creates source address of movie’s cover image
Thanks!
Thats awesome…
Any way to take the image out of the get_description function though?
i’d rather do a get_image and a separate get_description.
Or is this an rss update that we can’t really get around?
Thanks for the plugin man… really is awesome!!
Netflix has been including the image in the description. I could modify the script to remove it, but the question is should I? Technically, they are making the image part of the description. But in our case, we’re really only after the text. So, perhaps if get_description had the option to remove, that would suffice? I’m curious what people want.
My plugin just stopped working. I am using the latest release, and it was working yesterday…hopefully Netflix is just having a temporary issue with their feeds?
FROM NETFLIX (7/24/07):
The Netflix web site is temporarily unavailable.
It is anticipated that the site will be available again at 9:00 AM Pacific time.
We apologize for any inconvenience this causes you.
Please visit us again soon.
Oh man, sorry to bother you. I can’t believe I didn’t even check that. Must have something to do with this 2-year-old attached to my leg.
Thanks!
I’d like to display the at-home movies from my queue and from my husband’s queue on our Web site. Is there any way to do that?
[…] Netflix - Share portions of your Netflix queue with your readers, let them know what you’re renting or already have. […]
Very useful and informative blog. Recommended for all to see.
http://medsdrugs.blogspot.com/
I would like to creat an array from your plugin - I currently get 8 movies at a time, and would like to build 2 rows of 4 pictures. Any idea how I might do that? Right now, trying to display all 8 makes for a long line in any direction.
[…] Netflix - Share portions of your Netflix queue with your readers, let them know what you’re renting or already have. […]
[…] Netflix - Share portions of your Netflix queue with your readers. […]
[…] EasyPayPal- Ebay Sales Lister- Facebook Photos- GetWiki- iTunesSpy- Last Amazon Review- MasterWish- Netflix- Phoogle- Slashdot.org Headlines- PayPal Donate Button- WP-Twit- Yahoo Browser-Based […]
view my movie list
Hi.
Good design, who make it?
[…] Netflix queue, and 7 random books from my library. If you are using Wordpress, you can find the Netflix module here. If you are a bibliophile like me, you can import your library to LibraryThing here for free. […]
hi !
refractile
very interesting point of view, has never been conceived of this .
[…] Netflix Displays info from your Netflix account. This includes text and images via RSS feed. Read more about this plugin on the developers site here. […]
[…] Netflix - Share portions of your Netflix queue with your readers. […]
[…] I used Albert Banks’ excellent Netflix plug-in to generate the list with links, and then I viewed the source of the post and copy+pasted the […]
[…] Netflix - Share portions of your Netflix queue with your readers. […]
I am a Netflix fan, I recently ordered http://www.shoptions.net/netflix I have a large movie queue already and will be opening a blog shortly. Thanks for the plugin
[…] Bruce Williams’ Scriptaculous Accordion. The dynamic sidebar automatically places the FlickrRSS, Netflix and Scrobbler plugins in the accordion if they’re activated, while widget users will find a […]
Great tool… just installed and tweaking it now. Is there a way to get the ratings (stars) for recently viewed?
[…] I’ve currently got activated on this blog are: Akismet, catcloud, Get Recent Comments, Netflix, Subscribe To Comments, and Top 10 posts, Views per post (although I am giving this one a little […]
uk car insurance quote uk…
Doyle disadvantages ooze?…
[…] Netflix Displays info from your Netflix account. This includes text and images via RSS feed. Read more about this plugin on the developers site here. […]
[…] Netflix Plugin is revised for internal uses. The base code is from Albert Banks’ netflix-3.1 […]
[…] other plugins I run here at TimmersTidbits/Timmyblog are FlickR Photo Album, Popularity Contest, Netflix Plugin to show my Queue, runPHP, Widgets, (now included in the newest update) Tagally Widget, Alex King’s Twitter […]
The netflix function works fine for me, but will not pull any images… I cannot get the movie netflix_movies function to work at all.
I use the code:
get_cover_image()?>
And it brings back 3 netflix image holders and then
“Fatal error: Call to undefined function netflix_movies() in /home/.vermin/xgodcorex/never-knows-best.net/blog/wp-content/themes/k2/app/modules/php.php(7) : eval()’d code on line 7″. I just would like to get some cover images, and this has baffled both my husband and I.
Sorry,
get_cover_image()?>
Just trying to get an example of the code to show up. Sorry for double posts.
get_cover_image()?>
[…] Netflix by Albert Banks: Facilitates Netflix queue showoff. […]
I am trying to get this function to work “netflix_movies” but whenever I do it and then put the example code in it just prints the following “get_cover_image() ?>”
If anyone can shed some light on this it’d be a great help thanks!
[…] RSS feed. Supports Associate IDs.MasterWish - Place your wishlist from MasterWish.com on your blog.Netflix - Share portions of your Netflix queue with your readers.Phoogle - Add Google Maps with markers you […]
[…] excellent standards compliant Flash detection and embedding JavaScript. By Michael Bester. Netflix 2.1 :Displays info from your Netflix account. This includes text and images via RSS feed. By Albert […]
[…] just as I was buying champagne for my validation party, Albert Banks’s Netflix plugin for Wordpress broke my website. Well, not really–it just introduced a small, annoying error that I’ll […]
Hey Albert,
Looks like there’s an image problem again.
Can you take a look? Thanks.
William
[…] Netflix - Share portions of your Netflix queue with your readers. […]
[…] have been using the netflix 3.1 plugin by Albert Banks to display my Netflix@home movies in my sidebar. I had the plugin set to display an image with […]
Hi! I’ve been using your plugin for a while and just dug into the Readme to figure out how to show three different queues. The README is really helpful, btw.
I’m unable, however, to show the “raw” option. Whenever I choose it, I get just the title. Here’s the code I’m using:
<? netflix(1, “home”, “raw”, “small”, “<li>”, “</li>”, “P7477471091201833694381953112710603″); ?>
But I only get the title. Am I doing something wrong?
You can see the active page here: http://curragh-labs.org/blog (at the bottom of the sidebar, the third movie uses this code rather than the “both” option).
Thanks for this great plugin.
[…] post goes out to all the wordpress users out there who wanted to use Albert Banks’ Netflix Plugin for Wordpress but were frustrated at the plugin not being accessible as a sidebar widget. I added some code to […]
I added some code to your plugin to widgetize it. (I couldn’t locate Chris Stanley’s code.) More details are posted over on my bloghere. If you are so inclined, please feel free to take the modifications and incorporate them into the next release of your plugin.
[…] Albert Banks » WordPress Netflix Plugin […]
Please help can someone tell me how to use this netflix on my blog. Maybe step by stem instructions for a non programmer.
ken@ken.cc