This is a super lightweight plugin to insert a set of social share links at the bottom of each post, focused on technical blogs.
With this plugin you don’t have options to configure. Simply activate or deactivate to show or not the bookmark social links.
This is the list of used social sites:
- Digg
- StumbleUpon
- Yahoo Buzz
- DZone
- Viadeo
- Delicious
- Dotnetkicks
- Technorati
- Faves
- Mister Wong
The plugin is implemented using the most simplistic html code to ensure fast load and minimal impact on your blog.
Works with IE6 and HTML feed (atom, rss) readers. Handles selective placement and position of the links.
If you want to perform some changes, here it is a small guide:
There is a function inside lightsocial.php that you can edit directly on the WordPress plugin admin section called: lightsocial_insert.
// insert Light Social custom html
function lightsocial_insert($content)
{
global $wp_query;
$post = $wp_query->post; // get post content
$id = $post->ID; // get post id
$postlink = get_permalink($id); // get post link
$title = trim(urlencode($post->post_title)); // get post title
$link = split('#', $postlink); // split the link with '#', for comment
$link = urlencode($link[0]); // get the actual link from array
$img_prefix = get_bloginfo('wpurl') . '/wp-content/plugins/lightsocial/';
$code = '';
//$display = is_home() || is_single(); // use this line for display on home and single posts only
//$display = is_single(); // use this line for display on single posts only
$display = true; // if you want to put some special condition
if ($display)
{
$code .= '<div class="lightsocial_container">';
// digg
$code .= code_digg($title, $link, $img_prefix);
// reddit
$code .= code_reddit($title, $link, $img_prefix);
// stumbleupon
$code .= code_stumbleupon($title, $link, $img_prefix);
// yahoo buzz
$code .= code_yahoo_buzz($title, $link, $img_prefix);
// dzone
$code .= code_dzone($title, $link, $img_prefix);
// facebook
$code .= code_facebook($title, $link, $img_prefix);
// viadeo
//$code .= code_viadeo($title, $link, $img_prefix);
// delicious
$code .= code_delicious($title, $link, $img_prefix);
// dotnetkicks
$code .= code_dotnetkicks($title, $link, $img_prefix);
// linkedin
$code .= code_linkedin($title, $link, $img_prefix);
// technorati
$code .= code_technorati($title, $link, $img_prefix);
// twitter
$code .= code_twitter($title, $link, $img_prefix);
// faves
//$code .= code_faves($title, $link, $img_prefix);
// misterwong
//$code .= code_misterwong($title, $link, $img_prefix);
$code .= '</div>';
}
//return $code . $content; // use this line if you want the links before content
return $content . $code; // use this line if you want the links after content
}
Comment the line of code corresponding to the social network you wish to remove. For example, to remove LinkedIn:
//$code .= code_linkedin($title, $link, $img_prefix);
If you want to display only in the home page and single posts, uncomment and comment the following lines:
$display = is_home() || is_single(); // use this line for display on home and single posts only (uncommented) //$display = true; // if you want to put some special condition (commented)
If you want to display the links before the content, uncomment and comment the following lines:
return $code . $content; // use this line if you want the links before content (uncommented) //return $content . $code; // use this line if you want the links after content (commented)
Download Here













130 Comments
Hi Alden,
I like your new plugin! I’m running into a bug serving up the icon files though. It looks like the direct links to them return 404s, yet the file permissions look correct. Any thoughts?
http://www.drelmo.net/wp-content/plugins/lightsocial/digg.ico
Thanks!
-Marc
I will fix it in a minute. It’s something related to new setup with wordpress.org directory.
Hi Alden,
I Just tried the plugin from the WordPress Site, and I ran into the same issue. I was able to locate the problem:
WordPress gave your plugin the folder name “light-social”.
In your code, you use “lightsocial” for links.
It’s a pretty easy fix, just add a dash to your css path on line 29, and to your image paths on line 172. I made these changes on my files, and it works like a charm.
Thank you!! Fixed and uploaded. Need to wait about 15 minutes for the update in wordpress.org directory.
Yes, I’ve found myself in that anxious “Please don’t let anyone download the old code for the next 15 minutes” state several times.
Ahaha! Already fixed and updated. I’m very impressed with the quick turnaround time. Keep up the great work!
Hey there
I have a problem using your plugin in IE 6.0. Not sure if its only my website but it wont show most if icons in IE but showing them ok in Firefox and other browsers. Seems like the IE cant parse the files.
Thanks
G
Hmm Its definitely something wrong with the ico files. I cant open them with the photoshop and I have the ico import/export plugin
Oh I have edited all icons and they works in IE now (twitter one lost its transparency but its not a big deal).
You can download them from:
http://rapidshare.com/files/324852159/light-social.zip.html
And upload/replace original in the /plugins/light-social/ folder
Best
G
Hi Alden,
I just installed your plugin, and I love how simple and easy it is to use.
I’m having a similar problem described by George above with some of the icons not showing up in IE6: Digg, .NetKicks and Technorati.
I tried to replace those icons with the ones posted by George, with no luck. If I navigate to the urls directly, IE6 displays them properly. Then when I navigate back to my blog, they show up. However, if I clear my cache, it reverts to the same problem as before.
If only IE6 would just die already.
@Chris Zeh
It looks like some, maybe all of the ICO files are actually renamed PNG files. I’m going to try and re-render them as small loss less GIF files, and edit the plugin’s pathnames accordingly, lets see how it goes….
It looks like some, maybe all of the ICO files are actually renamed PNG files. I’m going to try and re-render them as small loss less GIF files, and edit the plugin’s pathnames accordingly, lets see how it goes….
You can check my website: http://www.videocreativ.com in IE, they work well for me now when I re-rendered them in photoshop. Must be some cache problem with Chris browser or something
@George and @Chriz Zeh I’m glad you are using the plugin and providing me with this feedback. I just was quiet since I’m very busy. I updated the plugin to a new version 1.2 with a new set of icons and a fix for PNG transparency in IE6.
Thanks!!
@Alden Torres
Sweet, looks like it’s working perfect now! This is exactly what I was looking for, thanks for a great plugin. Thanks for getting back to us so quick with the updates!
Great website @George , looks good in both firefox and IE6
Hi Alden. Very nice plugin. Simple and clean. Any idea on how to make the icons displayed correctly in RSS feed? They won’t float left forming a horizontal row but stay one below the other making a vertical row.
@varometro
Thanks for your feedback. I found a way using the function the_content_feed and also, I have plans to simplify the code even further. I will make the changes during this weekend.
I want to know if it’s alright to just take out the css source line in the php completely. The lightsocial.css only contains two lines so I figured it won’t do much. Do you recommend this?
@Bryant Irawan
You are ok as long as you keep your style separate from your html markup. Otherwise it’s not the recommended way. You can put the content of lightsocial.css inside your main css and comment the line to save one request.
@varometro
The change is already made, you can see how it looks in Google Reader at http://wordpress.org/extend/plugins/light-social/screenshots/
@Alden Torres
Nice work Alden. Now it works perfectly!
I am getting errors on my newsfeed at Facebook, Google Reader, FeedBurner and Bloglines! Bloglines reports it as:
Fatal error: Call to undefined function: preg_last_error() in /hsphere/local/home/a***c/res***ful.com/blog/wp-content/plugins/light-social/lightsocial.php on line 233
I’ve deleted part of the path for privacy reasons.
I’ve tried uninstalling light social to no avail, followed by reinstalling.
Still a problem. How can I correct this?
@jonathan barnett
If you are familiar with PHP: The function preg_last_error requires PHP 5 >= 5.2.0. Based on your X-Powered-By header you are using PHP-4.4.9. You can comment the validation line if upgrade is not an option.
If you are not familiar with PHP: You need to upgrade to the latest PHP version. Highly recommended.
Hope this helps.
I’m following you (I think). Next stoopid question: When you say “I” need to upgrade PHP version, I assume you mean my web hosting service needs to upgrade? Or is this a local issue?
@jonathan barnett
Yes, I mean your web hosting service provider if your are using a shared hosting account. If they are not willing to do it, I recommend you move to another provider.
Thanks. And Happy New Year, btw.
Can I set this to show only on posts not pages?
@Shanna
Are you familiar with PHP? I would like to keep the plugin without “Admin” page for simplicity and instead, I can give you the right line of source code to replace.
is it possible to appear on the top of the post instead of the bottom?
Great work by the work!!!
@lambros Ntokas
Yes, let me put the change and document it. Thanks for your comment.
@Shanna
@lambros Ntokas
The changes are already commited and documented in this page.
Thanks for this great plugin ! It would be great to include .po files for internationalization…
Since I installed this plugin, rss feeds are bugged… is it incompatibility with feedburner plugin ? don’t know… As this plugin is in posts, do you think rss /feed can be disturbed ?
Hi @Bruno, I can see that your have the following error in your feed:
Fatal error: Call to undefined function: preg_last_error() in…
Check this previous comment @Alden Torres for the solution.
Hi, I experienced a problem with this plugin. When it is active and ONLY if I login as registered user, and ONLY using internet explorer 8, my left sidebar starts from the end of the article and not as it should at the beginning. I am running worpress 2.9. This is strange since nothing happens if I visit articles without logging in or if I am logged in and use firefox or chrome. Nobody else experienced this issue?
Hi @Enrico, probably it is some problem related to the theme. Can you give me a link to take a look?
Thanks for the quick reply, at the moment I disabled the plugin but if you tell me that this could be useful for you I can activate it. But you should register to the site, since this problems shows up only to logged in registered members. my theme is WP-Multiflex-3 and you can see the site @ http://www.dove-andare.net
bonjour
j’aurai souhaité ajouter “viadeo” à la suite de facebook etc …
est-ce possible et comment
D’avance merci de votre réponse
Hi @Karin HUPFER, it’s included in the new version. Just remove the comment from the following line
Merci beaucoup, bonne soirée !
Hi,
Just installed and activated this plugin. It does not appear as an available widget in the widgets list.
I am using the “Patagonia” theme – any ideas?
Thanks Greg
@Greg Olson-Hyde
Duh – it doesn’t appear as a widget – it’s at the bottom of the post – my mistake – please ignore.
It looks excellent – thanks!
I’ll try and wake up before I post next time – sorry!
greg
Hi, I’ve to notify you that i have to disable light social (v1.16), becouse it breaks my rss feed.
The problem that i’ve noticed, is that when I’ve enable light social, i’ve got a “XML parsing error: :34:29: unclosed CDATA section” when trying to validate my RSS trough W3C validation Service.
After disabling it, the RSS feed returns W3C compatibile. I’ve tryied more than 1 themes, and with all themes i’ve trued have got the same error.
Hi @Andrea Crippa, the problem is that I use a function preg_last_error which requires PHP 5 >= 5.2.0. You are the third person with the same problem and for that reason I decided to check if such function exists before use it. The change is in the new version.
@Alden Torres
Ok, i’ve noticed that the Centos/RHEL distributions that I’m using provide php version 5.1.6 and version 5.2.0 is still not available in Centos-Base and Centos-Plus repository. I prefer to stay in compliance with the upstream distribution, so thank you for the roll-back.
Hi Alden,
Just wanted to say that what you have created is just so much better than any other widget out there attempting the same job. Thank You!!!
Suggestion for you to think about (or toss out the window as i have no idea how much work goes into this stuff – its totally beyond me haha) but it would be great to be able to delete any social networking sites we dont want (in a graphical user interface) through the WP back-end. But thats just being picky – the product you have is totally brilliant!!
Hi @rohan, I will think seriously about creating the admin page, however the priority is keep as simple as possible. Thank you very much for your comment. Regards.
Yup simple is always a very good priority ..Im playing around with your advice column above for modifications
Great plugin, great work. “The priority is keep as simple as possible” please do so. Any possibility to integrate MisterWong to the bookmark social links?
Cheers!
Hi @Theo, I can add MisterWong as a commented one, similar to Viadeo and Faves. I would like to wait at least one day in order to keep the update frequency moderate. It this something you need now?
Thank you for the plugin!
I’d like to suggest that you add a lightsocial_img class to your plugin’s CSS. When I switch between various WordPress themes the image margins of the theme wreck havoc with the look of the plugin.
Hi @Andrew, I will do it for the next version. Thanks.
Hi Andrew,
Great plugin!
I’m running into a problem with it with IE6 (works fine with Chrome, Firefox and Flock, IE7 and Mobile IE).
With IE6 (on 2 different machines) it produces 2 rows of large icons and one row of smaller icons above the page and none of the icons are clickable. The normal icons show up under the posts but the mouseover doesn’t work.
Any workarounds for IE6?
Thanks,
Tony
when I activate the plugin, it displays the buttons with a blue border and in vertical instead of horizontal alignment. any ideas?
Hi @Phil, I can see the issue in your site.
If you are not familiar with PHP: The problem is in your template and probably you will face another problems with another plugins.
If you are familiar with PHP and HTML: The problem is that I use the wp_head hook. Quoted from WP.org doc.
“wp_head() is triggered within the section of the user’s template by the wp_head() function. Although this is theme-dependent, it is one of the most essential theme hooks, so it is fairly widely supported.”
Additionally, I can see that you have this line in your head: <script type=”text/javascript” src=”"></script>. This will cause you a lot of problems.
Regards
Hi @Tony. Thanks for your comment. Could I have the url to your website?
The alignment seems to messed up on my site. The png’s are way too spread out. Anybody have any ideas?
screen capture here.
http://bigfishfreeride.com/photo_files/light%20social.JPG
Hi @fish. This seems to be an incompatibility problem with another style included in your theme or by another plugin. Could I have access to your public url?
@Alden Torres
yeah of course: http://bigfishfreeride.com/blog/
thanks
@Andrew, @fish, thanks for your feedback. I made the change suggested by Andrew and it must fix the fish’s issue.
Regards.
Hi@Alden Torres
When ever you have time, there is no hurry ! and thank you again for the plugin
Hi Alden,
if i want this to only show on posts and never show on Pages and homepage , what would be the quickest way to do that ?
This is the sexiest Sharing plugin ever , lite , hot , powerfull,
Thank you
Hi @mody, look for this line in the plugin editor (Plugins->(Light Social) Edit.
$display = true;
and replace with
$display = is_single();
Regards
Hi @Theo, Mister Wong is now added as a commented one. Regards.
It seems to be broken in displaying in feeds. I’m seeing the icons vertically in my feedburner feed at http://feeds.feedburner.com/tkassembled/ and I didn’t mess with the source code at all. Is there something I need to do to get them displaying horizontally in feeds?
Hi @TK. Which version of PHP are you using?
Is there any way to more finely adjust the location that the links are output at?
My general structure looks like:
the_content()
the_tags()
comments_popup_link()
I’d like to have the social links display after the tag list and comment link. I’ve tried removing the filter on the_content() and calling lightsocial_insert() where I needed it, after removing $content from the output and leaving only $code.
When I do this however, it throws an error about missing the first parameter. I tried putting in a post number, post->ID, or something of the sort, however when I pass it any parameter it seems to just go blank and display nothing.
@Alden Torres Thank alot Alden , Great work , will make a post about this plugin later on my Site
Regards
I’m using version 4.4.9. I’ll see if I can upgrade to PHP5. I thought for sure I was running at least PHP5…
@TK, let me know the results. I use a function that requires PHP >= 5.
Hi @Jason, let me think about it. I will back to you.
Hey @TK , noticed you were unsure about upgrade to PHP5, here’s an htaccess tip I’ve used before to enable PHP5 when upgrading was not a viable option to me: https://www.asmallorange.com/help/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=34
All it should take is adding: “AddType application/x-httpd-php5 .php” to your htaccess file – hope that helps
And @Alden Torres thanks for the reply, I look forward to hearing back from you. I have some limited PHP knowledge, but not a great amount. I do love the plugin though, exactly what is needed without being a huge load on the site.
Hi @Jason, I think the solution is a direct modification of your template, since you are looking for a special placement inside “The Loop”. If you provide me with your template I will take a look in my development environment and perform the change (no promise about the time).
Regards.
Hi,
The only button I’ve tried so far is the one for twitter. But I noticed that it just outputs the URL of the post and not the post’s title. Is that the way it’s supposed to work and/or how would one get the post title included (which I suppose would then require the URL to be sent as a shortened URL, right?)?
Any thoughts?
Hi @BJ. Yes I’m putting only the url due to the length restriction. I would rather keep this without the shortened URL for simplicity. Is this something you need?
Regards.
Hi@Alden Torres,
Sorry, just saw this. It’s: http://indietrak.com
Tony
Hi Alden, it seems like the following line is no longer being called in my version of WordPress (2.9.1):
add_filter(‘the_content_feed’, ‘lightsocial_insert_feed’);
My light_social is no longer showing up in my rss feeds. Any idea’s about what’s going on?
Hi @Tony , did you tried upgrading the plugin to the last version?
Hi @Chris Zeh , I can see that you are up to date with your PHP. I just fixed an issue regarding the display in the feed. Can you update to the latest version? Regards.
This will be a very useful plugin for me.
Hi @Alden Torres ,
I installed the latest version of Light Social, but still no luck.
I tried to replace the “return $new_content;” line in the lightsocial_insert_feed function with something simple like: return ‘Here!’;
But this gave me no changes in the feed. It seems like the lightsocial_insert_feed function is not being called at all.
I tried to remove this line:
add_filter(‘the_content’, ‘lightsocial_insert’);
thinking that perhaps its filter was overriding the feed filter. But no luck here either.
I’m I the only one having problems with WP V2.9.1? I’d like to narrow it down and see if it’s just a problem I’m having, or everyone with 2.9.1 is having.
Thanks for the support!
@Chris Zeh My next idea is some incompatibility with the theme or another plugin. Could you test in a clean WP install? Just trying to figure out what’s the problem.
@Alden Torres , I just checked my Feed when I got home from work and it seems to be working here. It works with Firefox and IE8, I’ll check it again at work tomorrow to see if it is a IE7 issue.
Perhaps there was some kind of caching going on that I wasn’t aware of. I tried to clear IE7 cache, but might have failed.
Thanks for the awesome support.
Now it’s working for IE6. Perhaps my Feedburner plugin was doing some caching.
@Chris Zeh , good to know that it’s working now.
Hi Alden,
do you think about adding the Google Buzz to your Light Social plugin. I absolutely love this plugin and it would be great to have it updated.
Thank you so much in advance
Hi @WordPress SEO, the plugin is updated to support Google Buzz (aka. Google Reader). Thanks for your comment.
Great plugin, though I only have one gripe. How can I push the inserted buttons to appear after the comments link ? It seems to force itself either before or after content. I’d like to have more placement options which seems rather tricky.
Hi @Nash, thanks for your comment. Unfortunately, I can’t find a way to provide such functionality without change the template. If you know a plugin with that capability, let me know. Regards.
Thanks for this great and simple plugin. Two questions/requests though, is it possible to add an rss and/or email subscription icon to this, and second, are the icons scalable if I want them bigger or would I need to find replacement ones?
Thanks!
Hi Chris, while it’s possible to add any link to this icons row, the purpose of this plugin is more about social sharing/bookmark. Regards.
I love the plugin and this may seem silly but, I wonder can the links to allow people to post open in a new window?
Hi Jim, I updated the plugin to include this feature. Iadded the open in new window option (using target=”_blank” or javascript) in the admin page.
@Nash, @Chris, @Jim Reynolds I’m taking note of your questions and requests in order to implement them in the next major version. Thanks for your comments.
Hi Alden, thanks for the plugin. It’s s-weet
What should be the naming of the .po files / or am I completely doing something wrong?
I translated it with poEdit, but I’m not sure if I did the right thing. wplang is set properly (tr_TR), but lightsocial doesn’t seem to have noticed it
Thanks in advance!
@Alden Torres
Awesome, thanks. Looking forward to the update.
Hello Alden,
excuse my bad english.
First : I would like to say you “Thank you” for this plugin and the time you pass on it.
Second : A request. Can you plan to improve the php code of the plugin, making it to take advantage of using multiple sitename for loading the gif image.
Example :
digg loaded from static1.hostname.com
reddit loaded from static2.hastname.com
etc…etc….
In my site I’ve made some changes to your php code to reflect this changes.
I hope that you have understand my request; Take a look to my site and you how it work.
Thank you in advance.
Crippa Andrea
Thank you, Alden. I have just updated the plug-in on my blog. it works greaT. Thank you so much, I will write a quick post about your plug-in with link to it. Cheers
Hi Alden, thanks for a lovely straightforward plugin. While I understand your reasons for not inserting the blog title in the twitter insert – it would be nice to have the option of enabling this behaviour (and possibly passing it through a url shortener).
Hey there, Love the plugin, but for some reason, the icons appear vertical on buzz and it shows the name of the article but then it shows the name of the site (i presume it’s the name of the site) as null
You have some great plugins on your post. Your insight and expertise would be a welcome addition to our new community, i hope you will consider joining, and thanks for sharing!
Hey,
Thanks for the plug-in – its super.
I’m just having a little style issue – on certain posts the plug-in the styling doesn’t seem to apply http://craigleontowicz.com/blog/?p=265
It works perfectly on the blog home page and half the posts http://craigleontowicz.com/blog/?p=249
Sorry if this is a noob question.
Thanks for the updates too.
Hi, I just installed the plugin and tested it (the facebook button) but it is not sharing the actual post that the button is on, instead it is posting my ‘About Me’ page and a random photo from elsewhere on my site. Any help appreciated. Many Thanks Simon
Alden, do you know by any chance how to add ‘nofollow’ to those links?? Please help!
Hi,
I just to make a suggestion to the plugin.
When wp-content directory moved to somewhere else (different domain/subdomain), the images will not show up.
It’s seem the problem can be fixed by changing LINE:
++
$img_prefix = get_bloginfo(‘wpurl’) . ‘/wp-content/plugins/lightsocial/’;
++
with this LINE:
++
$img_prefix = WP_PLUGIN_URL . ‘/lightsocial/’;
++
Best,
How can I add target=”_blank” so I open in a new window?
A great plugin. I installed it at it just works. No mess no fuss.
Thanks!
Dave
If you want to add Ping.fm
Image Download:
http://www.zoomwebvideo.com/zoomlab/wp-content/plugins/light-social/pingfm.png
function code_pingfm($title, $link, $img_prefix)
{
$href = ‘http://ping.fm/ref/?link=’.$link.’&title=’.$title;
$img = $img_prefix.’pingfm.png’;
$tooltip = __(‘Ping This!’, ‘light_social’);
return code_helper($href, $img, $tooltip);
}
Hey Alden,
Would you consider adding fwisp to the list of supported sites in your plugin? Email me if you get a chance please!
Thanks.
I have your plugin running on my site and it’s great. However, the latest update causes the plugin to run “after” all the other plugins have run. This messes up my layout because I have some plugins I want to run that have content I want to appear AFTER the social links.
Any solution?
Hi @Mayour, Thanks for the feedback, I reverted that behavior and added the position settings. The plugin is updated now.
Alden,
Thanks for that, that was a fast response! However, this setting was already available if I edited the actual plug-in file.
What I was referring to is that originally the plug-in was called by hooking the function to a specific action. The codex states that the add_action hook can accept priority arguments.
What I had was another plug-in also hooking in with add_action and merely changed the priorities for each.
Nevertheless, I played with the CSS and changed the layout to work around this issue. No complaints, still love your plug-in, keep up the great work!
I downloaded, unziped, installed & activated your great looking program, but, it is not showing up anywhere. Where did it go? What did I do wrong?
Hi @yuli, I can see you are using WP-Cache. Did you reset the cache?
Now I am showing my ignorance! I have no clue how did this wp-cashe got there. Should I reset cache? How? Have tried a few time to delete and reinstall. So far it has not worked yet.
Hi yuli, another person have the same issue but I can’t find the problem. I have plans to update the plugin next week.
Hi yuli, can you tell me your version of PHP?
Hi, Alden
I love your work all the time. But it seems the latest version of Light Social is not compatible with my exist website/layout. The icon list disappears when I upgrade from 1.x to 2.0 (and 2.1). Any solutions? And may I have your previous version of Light Social?
One feedback: The 1.x version will show vertical icon list on my Facebook (automatically forward from WordPress). You may take a look at the URL below:
http://www.facebook.com/#!/notes/malic-huang/gu-qi-yi-qian-nian-de-zhi-qi/411716222144
Hi @Malic Huang, thanks for your comment. Could you activate the latest version in your blog to detect what the problem is?
Hi Alden,
I already active it on my wordpress site (http://www.wordtech.com.tw/wordpress). And I put a screen snapshot on website for you (http://www.wordtech.com.tw/ftp/others/light_social.jpg) to indicate the location that I expect Light Social icon list to show up. Version 1.x shows up icon list here.
Thanks for your help.
Hi Malic, I can find the problem. I have plans to update the plugin next week. Maybe you can provide me with more information. Regards.
Hi Malic, now I can see that you are running an old version of PHP. I strongly advice you move to the latest version. Regards.
Ok. I’ll try it. Thanks a lot.
There was a update for this plug-in and after I clicked on auto update it no longer shows up on my blog. The plug-in is active.
Hi jeannie, can you tell me the your PHP version?
2.9.2 Is this what you mean by PHP?
2.9.2 is the version of your WP blog. You can ask to your hosting service provider.
Hi Alden,
I have installed it, works very well, thanks. However, I would like to keep only a few of the “share” functions – such as Facebook, Twitter, and LinkedIn. How can I do that, i.e. remove the other icons?
Thanks,
Ilgar
Love your plugin! One quick question…Is it possible to have the links show up only on posts and not pages?
That would help a lot…thanks again!!!
Instalei o pluguin, porém quando vou compartilhar os posts aparece sempre a mensagem dizendo que o conteúdo do meu post está bloqueado por alguns usuários do facebook (aliás, utilizo apénas essa rede social). Obrigado
Thanks for the plug-in. Anyway to get links to open in a new tab?
22 Trackbacks
[...] This post was mentioned on Twitter by bkmacdaddy designs, Siraj Hassan . Siraj Hassan said: RT @bkmacdaddy: Light Social #WordPress plugin – http://bit.ly/5hYOt7 [...]
Social comments and analytics for this post…
This post was mentioned on Twitter by bkmacdaddy: Light Social #WordPress plugin – http://bit.ly/5hYOt7...
[...] Eklenti Ana Sayfası [...]
[...] This post was mentioned on Twitter by drwebmagazin, Alexander Resch. Alexander Resch said: RT @drwebmagazin: Light Social WordPress plugin http://bit.ly/6tWZOM [...]
[...] Light Social – this plugin ads small social bookmarking widget on bottom of the each page and post that allows your readers to bookmark your content on various social bookmarking websites. It has it all: Delicious, DotNetKicks, Reddit, Digg, Stumbleupon, Tecnorati etc) [...]
Social comments and analytics for this post…
This post was mentioned on Twitter by drwebmagazin: Light Social WordPress plugin http://bit.ly/6tWZOM...
[...] Light Social (Alden Torres) [...]
[...] I have switched to Light Social. Not as pretty, but it does render valid CSS and is even [...]
[...] Light Social von Alden Torres ist ein Social Bookmarking Plugin, das Google Buzz, Digg, Reddit, StumbleUpon, Yahoo Buzz, DZone, Facebook, Viadeo, Delicious, DotNetKicks, DotNetShoutout, LinkedIn, Technorati, Twitter, Faves und Mister Wong unterstützt. [...]
[...] Social Plugin von Alden Torres 18. Februar 2010 | Autor: KHK Das Light Social Plugin von Alden Torres ist ein Social Bookmarking Plugin, das Google Buzz, Digg, Reddit, [...]
[...] rest is here: Light Social WordPress plugin | Alden Torres’s blog Tags: social, socialbookmarking, [...]
[...] Plugin Homepage Related Posts:Add Buzz this button to WordPress blogWordPress Blog Database BackupWordPress Plugin to show Twitter FansGoogle comes back with Google BuzzBlog from Firefox using ScribeFire Blog Editor blog plugin, Twitter, wordpress /* */ Comments (0) Trackbacks (0) Leave a comment Trackback [...]
[...] Download: Light Social Plugin Homepage: Light Social [...]
[...] 4. Light Social [...]
[...] Light Social WordPress plugin is a great way to let your readers promote your posts. It automatically adds a number of the more [...]
[...] Light Social [...]
[...] Light Social [...]
[...] Light Social [...]
[...] Light Social [...]
[...] Light Social [...]
[...] Light Social [...]
Auto Articles Poster Plugin Pack For WordPress…
Auto Articles Poster which come with 3 Pack Of Plugins to help automate your wordpress blogging process by autopost article to your site effortless. whether you are adding larges amounts Of Plr article, Unique Articles, or even RSS Feeds to your blog ….