Facebook Like Button Plugin for Wordpress

Kouguu FB Like wraps the new Facebook Like Button plugin into a customizable WP plugin. Updated feature list:

  • Use iFrame or FBML (with share/comment functionality)
  • Displaying the Like Button is individualy settable on post/page level
  • Add OpenGraph metatags to your blog
  • View recent activies right on your admin pages

What it’s all about:

The Like button enables users to make connections to your pages and share content back to their friends on Facebook with one click. Since the content is hosted by Facebook, the button can display personalized content whether or not the user has logged into your site. For logged-in Facebook users, the button is personalized to highlight friends who have also liked the page.

Now you can add this social feature without any hard-coding, just install the plugin and use the administration screens for easy setup:

Download Plugin: Kouguu FB Like Button Plugin for Wordpress

Try for yourself:

42 responses to “Facebook Like Button Plugin for Wordpress”

  1. Facebook Like Button în WordPress | WP Tuts

    [...] preferi un plugin cu panou de configurare ai de ales între Facebook Like Plugin for Wordpress și Kouguu FB Like Button Plugin for Wordpress. Pluginurile sunt oarecum similare, testează și alege-l pe cel care ți se potrivește mai [...]

  2. Come aggiungere il pulsante “Mi Piace” di Facebook nei tuoi post in Wordpress | Twittek

    [...] Installando il plugin FB Like Wordpress [...]

  3. Christo

    thanks!
    it’d be cool if you build the plugin so, it could use xfbml and have this comment/share option as on levis.com – this would be really cool :)

  4. Bill Pennington

    Thanks for putting this together so quickly. It works great!

  5. Tweets that mention Facebook Like Button Plugin for Wordpress -- Topsy.com

    [...] This post was mentioned on Twitter by Tony Teegarden and Alex Britez, sava. sava said: hmm RT @abritez: What to implement new Facebook 'Like' button on your WordPress blog? http://bit.ly/9d9Qvp [...]

  6. Maor Barazany

    Hi,

    Great plugin, I’ve installed it now in my blog (invited to visit, there are some wordpress tips there, and you can use google translate on the left sidebar to translate the Hebrew to your language).
    I have 2 suggestions for the next version: one is option to decide if the button will be only on pages or posts or both. There are some cases which it can be usefull, also maybe to limit it to certain categories or exclude specified categories.

    Another thing is localization support, so it could be easily translated to other languages and increase the plugin’s spread.

    Thank you for so quickly implementing the new FB feature for wordpress.

  7. Maor Barazany

    It would be also great if could add subscribe to comments by email to your blog.

    Thanks

  8. Simone

    great :) if you need a translation in italian, drop me a line!

  9. Ein WordPress Plugin für das “Globale Mögen” in Facebook | kuettner.it

    [...] Plugin “Facebook Like Button Plugin for Wordpress” gibt es hier. Diesen Beitrag bei weiteren Bookmarkdiensten [...]

  10. uberVU - social comments

    Social comments and analytics for this post…

    This post was mentioned on Twitter by ateegarden: Damn, that was easy. Just intalled new WP-Plugin for Facebook “Like” button. Get it here >> http://bit.ly/b7ybgK...

  11. wp-popular.com » Blog Archive » Facebook Like Button Plugin for Wordpress

    [...] more here: Facebook Like Button Plugin for Wordpress Tags: facebook, [...]

  12. Mayank Dhingra

    Thanks for the Plugin. It works like a charm

    Cheers !!

  13. Nachtrag: Facebook “Gefällt mir”-Button | Andi Licious' Blogosphäre

    [...] Facebook-Like-Button-Plugin for Wordpress von Nicolas [...]

  14. Manu

    Works well.

    But is it possible to do an update and offer an [shortcode] for inserting the button?

    It would really helpful so we can show facebook, tweetmeme and other in one line wihtout hard coding?

  15. How to Add the Facebook Like Button to a Webpage | Search Marketing Blog from Cincinnati, Ohio

    [...] They even have a great WP plug-in for it: Facebook Like Button Plugin for Wordpress [...]

  16. travis

    What would be great is an option to manually place a template tag and disable the “position” feature. I would like to use it exactly as it is used on levi.com. I am using wp e-commerce shopping cart plugin and trying to add this feature to each product for easy facebook sharing. For some reason it seems most similar plugins work very well with posts/pages, but I am not able to generate the popup comments box. I am also not able to get it to generate a facebook link that links back to any url other than homepage or any other page url. Seems to be working specifically for posts. Do you see a chance of me getting my way, LOL. BTW, love the extra “recent activity” feature that this one offers that I can’t find elsewhere. I’d love to use this plugin but need to be able to add into template and not automatically to pages/posts. Thanks for reading, and great work!!!

  17. Diane Macdonald

    I researched all day today trying to find the easiest plug-in to install and understand. This was it. Thank you! It works great.

  18. Come inserire il Facebook Like Button su WordPress | BigThink

    [...] Kouguu FB Like Button Plugin for Wordpress Permette di usare sia la versione iFrame che quella XFBML, di inserire gli Open Graph metatag e di personalizzare i pulsanti. [...]

  19. Brijesh

    The plugin works well, but I dont see admin link to on my next button. Any suggestions?

  20. Plugin Wordpress para agregar el botón me gusta de Facebook | Universofacebook

    [...] Kouguu FB Like es un plugin para Wordpress que inserta en el blog el nuevo botón “Me gusta” de Facebook sin necesidad de meter nada de código. [...]

  21. Yoann Romano

    Hello Nicolas,

    Unfortunately when I install your plugin on the latest version of WordPress this error message appears :

    Parse error: syntax error, unexpected ‘{‘ in /homez.313/yoannrom/www/wp-content/plugins/kouguu-fb-like/kouguu-fb-like.php on line 26

    Do you know how to deal with that ?

    Thanks in advance !
    Yoann

  22. Mark

    I see the button showing on the left of the post. Anyway to easily align this to the right so it’s next to my retweet button?

  23. Jose

    First off — great plugin!

    For those looking for a way to exclude this from a particular page/category….this is how i did it.

    In: /wp-content/plugins/kouguu-fb-like/library/kouguu/app.functions.php

    I replaced my fb_like_iframe function (first function on the page) with this: (you can change the category and/or page id’s to whatever works for you)

    function fb_like_iframe($href, $layout, $show_faces, $width, $height, $action, $colorscheme) {
    $funct_args=func_get_args();
    $params=kouguu_parse_args(‘fb_like’, $funct_args);
    foreach ($params as $par_name=>$par_value) {
    if ($par_value) $par_list.=”$par_name=$par_value&”;
    }
    $iframe=”;
    if(in_category(7) || is_page(6) || in_category(51)){
    }
    else{
    return “$iframe”;
    }
    }

    And also replaced the second function (function fb_like_fbml) with this:

    function fb_like_fbml($href, $layout, $show_faces, $width, $height, $action, $colorscheme) { //
    $funct_args=func_get_args();
    $params=kouguu_parse_args(‘fb_like’, $funct_args);
    foreach ($params as $par_name=>$par_value) {
    if ($par_value) $par_list.=” $par_name=\”$par_value\”";
    }
    $fbml=”";
    if(in_category(7) || is_page(6) || in_category(51)){
    }
    else{
    return “$fbml”;
    }
    }

    Hope that helps!

  24. How to Add the Facebook Like Button to a Webpage

    [...] They even have a great WP plug-in for it: Facebook Like Button Plugin for Wordpress [...]

  25. Emily

    [...] Kouguu FB Like es un plugin para Wordpress que inserta en el blog el nuevo botón “Me gusta” de Facebook sin necesidad de meter nada de código. [...]

  26. brian b

    hi – thanks for the plugin

    seems to work great – however i don’t see the “brian likes this…” in my recent activity on my facebook page? shouldn’t it show up there? i see my pic and it says i like it on the blog i installed it on. but not on my fb?

    when i tested yours above it showed up in my recent activity?

    any ideas?

    thanks

  27. Michael

    Hi, I like this plugin and the idea, but when I click the Like, it expands a big blank white area and half covers the OK button, so am not sure what settigns I should have so this doesnt happen. Can you take a look please? http://altenergyreview.com

    Thanks

  28. panchopanter

    thankyou

Leave a Reply