Simple Social Bookmarks



Simple Social Bookmarks adds icons to your posts and/or pages that allow your visitors to easily submit them on social bookmarking and network sites.

Description

Please note, if upgrading from a version previous to 3.0: Version 3 has changed some of the existing service names and icon filenames - please check the version history for further details. In addition, the standard icon set has changed.

Simple Social Bookmarks is an easy but powerful way to implement Social Bookmarking on your WordPress blog. It has links to over 200 Social Bookmarking networks - more than any other plugin - and is fully XHTML standards compliant.

Many non-English bookmarking sites are included - particularly Russian, Chinese and Japanese. Because of the use of icons and a lack of an administration screen, Simple Social Bookmarks does not require translation to other languages.

It will display a row of social bookmarking icons wherever you add its code - for an individual post and page or in a sidebar. They are split between bookmarking services and tools (e.g. printing, converting to PDF, etc).

The code for Simple Social Bookmarks should be added to your theme's code where required. In the case of posts this should be within "the loop".

Here is an example on use...

<?php echo simple_social_bookmarks('','','padding-left: 5px; padding-right: 5px','iconfolder=24x24'); ?>

There are 5 parameters in total that can be specified, but all are optional.

The first parameter is the URL that you wish the social sites to bookmark. If left blank (and this is probably the default for most people) it will use the URL of the current post or page.

The second parameter is where you can specify a shortened URL to bookmark (if you have one available). To maintain backward compatibility with previous version of this plugin, the URL must begin with "http" to be accepted. At the moment Twitter, Identica and Blip will be passed shortened URLs. If you think any other services should be included, please let me know. If no short URL is specified then the post/page short link will be used - if this is not available then a short URL will not be used.

The third parameter is a style definition which applies to the bookmark icons. This should, where possible, not be used in preference to using CSS definitions. Instead each element generated has a class of ssb so that it can be defined via your own stylesheet. The separator class is ssb_sep.

The fourth parameter can contain a number of options, all of which are separated by an ampersand. These options are as follows...

default= This should be on, off or basic and defines which social bookmarks should display by default. on means all should display, off means none should be displayed and basic shows a basic few. Not specifying this sub-parameter will cause the basic set to be displayed.

iconfolder= If not specified, a default set of 16x16 pixel icons will be used. If, however, you'd like to use your own icons then you will need to add a sub-folder in your theme folder and then use this parameter to specify the sub-folders name. In the above example, I am specifying a sub-folder named 24x24. Icons should all have a .PNG extension and the file names must match the bookmarking service name, as specified below. Bookmarking services are shown first and tools afterwards.

priority= Allows you to specify whether a bookmark link should be via AddThis (1), Shareaholic (2) or AddtoAny (3) (if a link via more than one is available). This is defined by providing a series of numbers representing the order of the services. So, a priority of 231 would be Shareaholic first, followed by AddToAny and then AddThis. The default priority is 123.

nofollow= By default, REL=NOFOLLOW will be added to all links. However, if this is specified as NO then this will be deactivated.

target= Allows you to specify a TARGET. By default this is not used.

separator= If you wish to display a separator image between the bookmark and icon lists then you must specify separator=Yes. An image named separator.png will then be displayed. If using your own folder for images then this image will be required as well.

id= If using the animation option (see the later section) then a unique ID must be specified for each set of social bookmarks on the screen. If there is only one set of bookmarks per post and page, then the best option is to pass the post ID via get_the_ID(). By default, no ID is specified so animation is turned off.

There are also options for EACH of the social bookmarking services allowing you to specify whether they should be turned on or off. So, for example, to turn Digg off, you would specify digg=off.

So, as a further example, if you ONLY wanted the Delicious and Digg bookmarks to appear, it would be best to specify the default as off and then turn Delicious and Digg on individually, like so...

<?php echo simple_social_bookmarks('','','','default=off&delicious=on&digg=on'); ?>

Finally, the fifth parameter is an optional title - if this is not specified the title of the current page or post is used.

The full list of social bookmark services are listed separately. However, the basic set of services are as follows...

Delicious, Digg, Email, Facebook, LinkedIn, Print Friendly (Print), reddit, StumbleUpon and Twitter.

Here is a further version of the original example, but this time with a check to confirm that the plugin is active...

<?php if (function_exists('simple_social_bookmarks')) : ?>
<?php echo simple_social_bookmarks('','','padding-left: 5px; padding-right: 5px','iconfolder=24x24'); ?>
<?php endif; ?>

Using the shortcode

If you wish to add social bookmarks directly into a post or page you can use the shortcode [bookmarks]. All the same parameters as the PHP function are available and are named url, shorturl, style, options and title.

An example would be...

[bookmarks url="http://www.artiss.co.uk" style="padding-left: 5px; padding-right: 5px" options="iconfolder=24x24"]

Adding To Your Feed

It's possible to add the Social Bookmarks to your WordPress feed. Open up your functions.php file within your theme folder and add the following code...

<?php
function insertRss($content) {
    if ((is_feed())&&(function_exists('simple_social_bookmarks'))) {
        $content = $content."<p>".simple_social_bookmarks('','','padding-left: 2px; padding-right: 2px','iconfolder=16x16')."</p>";
    }
    return $content;
}
add_filter('the_content', 'insertRss');
?>

Obviously, you will need to modify the parameters that are passed to the Simple Social Bookmarks plugin, to make it appropriate for yourself. In the above example you may notice that I'm using an alternative set of icons with a small padded space between them.

Animation

A basic animation option is available and is switched on by providing a unique ID parameter (see earlier details).

Once specified, hovering over a bookmark option will switch it from the standard icon to another with _hov on the end.

For instance, hovering over twitter.png will switch the image to twitter_hov.png. When you move away, it will return to the original image. This extra image will need to exist in the same folder as the first.

However, although basic, it can be used for all sorts of effects, such as black & white icons becoming coloured when hovered over or icons that expand in size.

Here is an example where I'm switching on the animation option by specifying a unique ID...

<?php echo simple_social_bookmarks('','','padding-left: 2px; padding-right: 2px','separator=Yes&id='.get_the_ID()); ?>

Animation can also be performed by modifying the stylesheet. The following example will cause the images to move up by 5 pixels whenever they are hovered over, in a similar way to the SexyBookmarks or Simple Social plugins.

.ssb img, .ssb_sep {
    padding-top: 5px;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 5px
}
.ssb img:hover {
    padding-top: 0;
    padding-bottom: 5px;
}

Installation

  1. Upload the entire simple-social-bookmarks folder to your wp-content/plugins/ directory.
  2. Activate the plugin through the 'Plugins' menu in WordPress.
  3. There is no options screen - configuration is done in your code.

Available Bookmarking Services

Any of the following bookmarking services can be used...

100zakladok, a1webmarks, addthis, addtoany, allvoices, amazon_ca, amazon_de, amazon_fr, amazon_jp, amazon_uk, amazon_us, aollifestream, aolmail, baang, baidu, balatarin, barrapunto, bebo, bibsonomy, biggerpockets, bitacoras, blinklist, blip, blogger, bloggy, bloglines, blogmarks, blogpoint, blogtercimlap, blurpalicious, bobrdobr, bonzobox, bookmark_it, bookmarks_fr, bookmarky_cz, boxdotnet, bryderi, businessweek, buzzfeed, buzzurl, care2, choix, citeulike, clply, comments, connotea, corank, cosmiq, current, dailyme, dealsplus, delicious, digg, diggita, diggitsport, dihitt, diigo, dipdive, dotnetkicks, douban, dzone, edelight, ekudos, elefantapl, evernote, facebook, fark, faves, favoriten_de, fc2bookmark, flaker, fnews, folkd, forceindya, fresqui, friendfeed, friendster, funp, gamekicker, ghidoo, globalgrind, googlebookmarks, googlebuzz, googlenotebook, googleplus, grono, grumper, gwar, habergentr, hackernews, hadashhot, haohao, hatena, hazarkor, healthimize, hedgehogs, hellotxt, hotklix, hyves, icio, identica, igoogle, informazione, jamespot, jumptags, kaboodle, kledy, laaikit, ladenzeile, latafaneracat, linkagogo, linkarena, linkedin, linkninja, linkter, linkuj, livedoor, livejournal, mawindo, meinvz, mekusharim, memori, meneame, messenger, misterwong, misterwong_de, mixx, moemesto, mototagz, msdn, msnreporter, multiply, muti, myaol, mylinkvault, myshare, myspace, n4g, netlog, netvibes, netvouz, newsing, newstrust, newsvine, niftyclip, ning, nowpublic, nujij, oknotizie, orkut, pfbuzz, pingfm, plaxo, plurk, pochvalcz, posterous, pratiba, preferate, pusha, quantcast, reader, readitlater, readwriteweb, reddit, rediff, redkum, scoopat, scoopeo, sekoman, shaveh, shetoldme, sinaweibo, slashdot, smiru, socialbookmarkingnet, socialdotcom, socialdust, sodahead, sonico, soupio, sportpost, springpad, spurl, squidoo, startlap, strands, studivz, stumbleupon, stylehive, supr, svejo, swik, tagmarksde, tagvn, tagza, techmeme, technet, technorati, thefreedictionary, thisnext, tuenti, tulinq, tumblr, tweetmeme, twitter, typepad, upnews, urlaubswerkde, viadeo, virb, visitezmonsite, vk, vodpod, vybralisme, webnews, webnews_de, wikio, wikio_fr, wikio_it, windycitizen, wink, winlivespaces, wists, wordpress, wovre, wykop, xanga, xing, yahoobookmarks, yahoobookmarks_jp, yahoobuzz, yahoobuzz_fr, yahoomessenger, yandex, yardbarker, yigg, zakladoknet and zilei.

In addition, the following tools can be used....

2tag, aviarycapture, bitly, domaintoolswhois, email, gmail, googletranslate, hootsuite, hotmail, instapaper, isgd, jmp, joliprint, osxdashboard, page2rss, pdfmyurl, pdfonline, printfriendly, qrf_in, tinyurl, w3validator, windowsgadgets and yahoomail.

Reviews & Mentions

"David Artiss brings version 3.0 of the Simple Social Bookmarks plugin" at WPCandy.

Licence

This WordPRess plugin is licensed under the GPLv2 (or later).

Frequently Asked Questions

The Social Bookmarking site is not appearing

If you've not specified default=on then new sites will not appear - you will need to specifically switch it on.

Here's an example of switching on Google Buzz...

<?php echo simple_social_bookmarks('','','padding-left: 5px; padding-right: 5px','googlebuzz=on'); ?>

Where can I find some alternative icons?

The icons provided with the plugin are the standard icons for each of the sites (usually the site's favicon). There are many good, free collections available. However, none have the full set that this plugin uses, which is why I use this generic group.

None-the-less, most people will probably only want to display a few, popular, sites and therefore various icon collections will be ideal.

My favourites include Vector Social Media Icons by IconDock and Social Network Icon Pack by Komodo Media.

Alternatively, read 75 Beautiful Free Social Bookmarking Icon Sets from Blog Godown or 21 Sets of Free Social Bookmarking Icons for Your Blog from wpzoom.

You haven't included my favourite Social Bookmarking service

I keep a huge database of over 500 bookmarking services. However, I only use those that appear to be the most popular, based on Google search results. If you think I have missed one of great importance, please get in contact with me and plead your case!

Now that this plugin doesn't have it's own URL shortening, how can I do this?

There are many shortening plugins available to do this, including my own Simple URL Shortener. Simply call one of these first and get the shortened URL - you can then pass this as the second parameter into Simple Social Bookmarks.

Here is an example of how to get a bit.ly short URL with Simple URL Shortener...

if (function_exists('simple_url_shortener')) {$shorturl=simple_url_shortener('','bit.ly');}

Which version of PHP does this plugin work with?

It has been tested and been found valid from PHP 4 upwards.

Changelog

1.0

  • Initial release

1.1

  • Now XHTML compliant

1.2

  • Fixed issue with ampersands (and probably other characters) in the blog title causing linking issues
  • Added su.pr as another URL shortening service

1.3

  • Updated default icons to a set kindly provided by komodomedia.com (With the exception of the AddToAny and Ping.FM icons)
  • Added AddToAny, Ping.fm, Google Bookmarks, Google Reader and email to the list of providers. By default these will be turned off so as to not to suddenly appear on existing installs and cause problems!
  • Further improvement to blog title issues
  • Removed URL shortening on all services with the exception of Twitter, as it was not required and may have even have caused some issues (such as some services not being able to get hold of thumbnails and general page content).
  • Now using Simple URL Shortener plugin to provide URL shortening
  • Caching of short URLs now takes place providing large performance improvements
  • NOFOLLOW and TARGET parameters added
  • Compressed default icons

1.4

  • Removed caching, as this is now handled by Simple URL Shortener. Please ensure you update to the latest version of this plugin to ensure that caching continues to work - once you know it does, the cache folder for this plugin can be removed.
  • Added additional parameter - cache=
  • Tidied code and updated shared functions

1.5

  • Use different encoding for email links
  • Added Technorati to the list of providers. By default this will be turned off (including using the default=on option) so as to not to suddenly appear on existing installs.

1.6

  • Added Yahoo! Bookmarks, Yahoo! Buzz and Google Buzz to the list of providers. By default these will be turned off (including using the default=on option) so as to not to suddenly appear on existing installs.

1.7

  • Icon folders are now stored in the theme directory, to prevent them from being deleted whenever the plugin is updated
  • API key and user details can now be passed to shortening services
  • Added new 'default' parameter setting - this should not impact existing installation unless you've explicitly requested 'default=on'.

1.8

  • Added new, official, link for Google Buzz

2.0

  • Re-written base code
  • Added LOTS of new social services
  • Help file re-written

3.0

  • Another re-write of the base code
  • There are now 218 bookmarking services and 23 tools available
  • Now uses AddToAny, AddThis and Shareaholic for the majority of links
  • Removed use of Simple URL Shortener plugin - you now pass the shortened URL yourself, allowing any shortening plugin to be used
  • Split bookmark service definition function to a separate file
  • Output HTML comments containing plugin information
  • Added new parameter - priority - to allow user to give priority to one sharing service
  • New default icons
  • Existing icon filenames changed (ffeed is now friendfeed, ybuzz is now yahoobuzz, gbuzz is now googlebuzz and print is now printfriendly)
  • The bookmark service previously named ping.fm is now named pingfm
  • Removed Twitter text parameter (no longer used) and replaced with the ability to pass a shortened URL
  • Propeller has been removed as it is no longer available
  • Separated bookmarks and tools - added optional new separator icon
  • Used smush.it to compress images (23% average reduction)
  • The default is now for REL=NOFOLLOW to be on for all links generated to ensure maximum SEO optimisation.
  • The default for the target is now for it not to be specified (and therefore be XHTML valid)
  • Added a default CLASS to all elements plus an ID to the images
  • Added basic animation effect, allowing you to switch between two images
  • Improved the instructions and spell checked them for once!

3.1

  • Corrected ampersand in AddToAny URL to ensure code is XHTML valid
  • If no short URL is specified the WordPress shortlink will be used
  • Ability to specify own titles as well as URL
  • Added a shortcode option

3.1.1

  • Added Elefanta.pl, Fresqui, Gamekicker, Google+, Hao Hao Report, Hellotxt, Hyves, LaTafanera, Link-a-go-go, meinVZ, Netvouz, NewsTrust, She Told Me, Sportpost, Springpad, Strands, Tagmarks.de, Tagza, Techmeme and Zilei. There are now 238 services available.

Mantis Bug Tracker

Known Bugs

Roadmap View the Roadmap for Simple Social Bookmarks
Change Log View the Change Log for Simple Social Bookmarks

  1. Option to display text only links [View]
  2. Can't use with WP < 3 [View]
  3. Error in rel-link [View]

Planned Enhancements

Roadmap View the Roadmap for Simple Social Bookmarks
Change Log View the Change Log for Simple Social Bookmarks

  1. Allow user to specify the order of the output [View]
  2. Add Google Analytics tracking [View]
  3. Add option to switch off assigning of shortlinks as short URL [View]
  4. Vertical output option [View]
  5. Add Yuuby service [View]
  6. Clarify URL/title override [View]
  7. Add option to send to bookmarks [View]
  8. Bring plugin up to date [View]
  9. Use different default directory [View]
  10. Combine images using CSS sprite [View]
  11. Review interactive alternatives [View]
  12. Improve ALT text [View]
  13. Default custom directory path [View]
  14. Option for modal window [View]
  15. Improve compatibility with child themes [View]
With testking N10-004 tutorials, you will get complete information on wordpress plugins. Download testking 642-902 study guide and testking 70-640 video to become expert.

Delicious Digg Facebook LinkedIn Read It Later reddit StumbleUpon Twitter SeparatorEmail Google Translate PDF Online Print Friendly

Support Forum

Please use the forum for reporting any problems, queries or suggestions relating to this plugin.

50 Comments - ARCHIVE

  1. c46 says:

    I would use it on my site, but it’s not valid xhtml, please fix that and I will be more than happy to use it.

    • David says:

      Done! Version 1.1 is now available…. (grumble, grumble) I normally make a habit of checking the XHTML too. Thanks for letting me know!

  2. c46 says:

    Thank you very much David, I’ll be sure to check out more of your plugins!

  3. irosten.com says:

    After trying all the plugins on bookmarks I could find!
    THIS ONE is my absolute favorite! Easy, clean and good looking :)

  4. Sage says:

    I’d love to use it but I can’t figure out where in my single post template it goes. I keep getting errors no matter where I put it.

    • David says:

      It’s hard to give an answer as different themes have their templates organised different. If you want to contact me via the contact form, attaching the relevant template file, I’ll take a look and let you know.

  5. Naomi says:

    I am thrilled this plugin exists but for some reason the icons are not showing. I just get text links. I’m not sure what I’m doing wrong. All I did was upload the plugin and activate it and then drop in the first simple strip of code. help. :(

    • David says:

      In the plugin folder the icons should be in there as well – ensure they are. Also, the code you used to use it – does it have a iconfolder= parameter in it? If so, this is overriding the default folder to elsewhere – remove it and it will use the default icon set.

  6. Naomi says:

    I figured out the problem and thought I would give a shout out for anyone that ran across the same issue. If you want the icons to show verses just text links you will still need to create a new folder within the simple-social-bookmarks folder labeled 24×24 and place the default icons in it. These of course can be swapped out for custom icons but I feel the default ones are very nice.

  7. Naomi says:

    I saw you message after I added the latest. Perhaps I did it wrong but I got the desired results. Thanks for you help David!

  8. Rosastef says:

    Thank u! This is a great plugin, that worked right off the bat. Thx Naomi for the tip about the icon folder, otherwise I might have gotten into problems.

  9. Parrothead says:

    Thanks for such a great plugin. Just installed Simple Social Bookmarks and Simple URL Shortener on WordPress 2.9 and I think they’re great!

    I like this plugin the most because:

    It doesn’t require yet another javascript
    It doesn’t have an external stylesheet just for the plugin

    Ran into a snag with Simple URL Shortener on V2.9 though, the plugin didn’t create a cache folder, which caused an error. Went into the plugin folder and added one and all is well.

    Thanks for everything

  10. David says:

    Ok, yes, that’s my fault – I forgot to include the empty cache folder in the plugin download package. I’ve now included it.

  11. Bas says:

    Hi, I like the simple social bookmarks plugin, but I can’t get the simple url shortener to work. I have uploaded it in the right directory, changed the cache to CMOD777, but my URL’s don’t get shortened. After some testing it seems like it is not recognised that simple url shortener is activen (though my plugin panel says it is). Can you help me out?

    And I have another question. If I add e-mail to the social bookmarks the spaces are replaced by +, so it reads something like “I+have+read+something+on:URL” With Twitter it works perfect.

    • David says:

      After further discussion with Bas, and an exchange of emails, I am about to release a new version of Simple Social Bookmarks with an improved encoding method for email links.

      I have also found an issue with Simple URL Shortener (it doesn’t work if you have PHP 4!) and will release a new version of that too!

      Thanks to Bas for helping me get to the bottom of these.

  12. Bas says:

    David, it was a pleasure to help you. I really appreciate all the effords you have made to make it work for me. And all the things you are doing to keep this great plugin doing a very good job. So thanks to you!

  13. afark says:

    David,
    I love how simple & fast the plugin is. However, I’d like to include it in my footer (outside of the loop) rather than at the end of every post. This works fine on posts & pages, but not so well on the home page & category archives, etc. In those locations the URL and title are of the last post referenced, not of the homepage or archive themselves. Any suggestions?

    • David says:

      Yes. The first parameter you pass is, if required, the URL that you want it to use. If using it outside of the loop to represent, for example, the entire site, simply specify your site URL as this first parameter.

  14. afark says:

    David,
    It was a bit more complicateds, but in case you’re interested here’s what I did to make it work. First, I checked if I was on the home page or a category page, in which case I set the url & title by adding this just above your //Check URL:

    if (is_category()){
    $cat=get_query_var(‘cat’);
    $yourcat=get_category($cat);
    $url = get_category_link( $yourcat );
    $title = single_cat_title(“”, false);
    }
    if (is_home()){
    $url = get_bloginfo( url );
    $title = get_bloginfo( name );
    }

    Then I modified your setting the URL and title to only happen if it’s a single post:

    if (is_single()){$title=urlencode(html_entity_decode(get_the_title($post->ID),ENT_QUOTES,’UTF-8′));}

    I got some of the info to make this work from http://www.bestwpthemez.com/wordpress/code-to-get-current-category-slug-in-wordpress-blog-1434/

    I might need to do a little more cleaning up, but it seems to work for me.

  15. pandora says:

    hi, this is a great plugin, but i need to include the email function and icon – the instructions doesn’t detail how except to say it won’t appear by default. can you please let me know?

    thanks!

    • David says:

      When specifying the sub-parameters, simply add email=on (with an ampersand before it if tagging on the end of existing ones). For example…

      <?php echo simple_social_bookmarks('','','','email=on'); ?>

  16. pandora says:

    Hi David,

    Thanks for getting back so quickly. I have tried that and it didn’t work.

    Here’s my bit of code:

    And this is the page that I’m working on.

    http://www.grassrootsjourneys.com/explore/south-america/ecuador/akangau-tours/

    I can see that default icon are up, I just want to add the email as well. I haven’t altered anything else but for the above code.

    Thanks!

    • David says:

      As you can see, you code has gone from the comments (I don’t allow embedding within the comments). I’ve attempted to email you but the email address you’ve supplied isn’t working. Please contact me via my contact form, sending me the code in question. Thanks.

  17. dan says:

    looking for a plug for my site http://www.vehix411.com on word press it sounds intersting but to bad no photos of how its gona look

    • David says:

      Dan – the good thing about this is that it looks how you want it to! You can specify which bookmarks to use, your own icons and CSS to style them.

      This site uses the bookmark under each post, which should give you an idea of how they can be used (I only have a basic set in use, but my own larger icon set).

  18. Carlos says:

    Hi David,

    Just a newby question.
    I’d like to put the name of the sharing service right to the icon, but that name must be the same link as the icon gives, coud you help me?

    Thx.

    • David says:

      This plugin is entirely icon based and there is not (currently!) an option to display the results as text. However, there is an option to supply your own folder of icons – there is nothing to stop you creating a graphic for each which includes the sharing services name!

  19. David says:

    upgrading seems to delete the folder I created to hold images, easily sorted tho’. love the plugin, many thanks

    • David says:

      That’s a good point – when upgrading plugins it overwrites any extra folders with the plugin folder. I’ll be looking, for a future release, of moving the icons folders into the theme folder so that this doesn’t happen.

  20. Martin Koss says:

    Hi David. Phew. I don’t get it buddy. I have installed both plugins and tested the URL Shortening using bit.ly and my API key

    That works – it displays a short URL and the same one each time I load the page. No problems there.

    So now I installed the Social Bookmark plugin and set it up and it displays the icons on my pages (Posts) but – how do I connect the 2 plugins? My Twitter link gets a brand new short URL – not the one already associated with that post.

    But then I started looking at the code and I can’t see how the two plugins are working together – and they don’t seem to be at all. So I must have missed something completely.

    I have not added any code anywhere except on my single post PHP:

    ).

    Please help – I’ve only got a little bit of hair left.

    Cheers.

    • David says:

      As per my previous response to a user, I’ve not yet implmeneted the API key facility into this plugin, so that may be the issue.

      Where the two plugins meet… if you open up simple_social_bookmarks.php, look at line 34 – this is where it calls Simple URL Shortener.

      David.

  21. Jason says:

    Hi David,

    I love this plugin and have been extremely happy with it for quite a while now. However, I’ve been trying to use bit.ly+key for my shortener, and perhaps I’m not reading carefully, but I’m not sure where to put my login and API key in the script. I’ve tried copying the Simple URL shortener format, but it did not work. Any recommendations?

    • David says:

      Hi Jason,

      I added the API key, etc, in more recently to Simple URL Shortener and have not had the opportunity to add the same into Simple Social Bookmarks. However, look out for an update in the next few days that should resolve this!

  22. Suatmaji says:

    Hi David,

    In my case, the icons show vertically not horizontally. When I view the source code, there is always a <br> between the bookmarks. I use iDream/1.0.2 Theme for my blog, and I use this code in “Append to Post Content” widget:

    <p><?php echo simple_social_bookmarks('','Currently reading a blog post titled %title% - %url%','','default=on'); ?></p>

    Coud you help me?

    Thanks a lot.

  23. Nohel says:

    Your contact page wasn’t working. I wrote this there:

    Here is a sample post: http://www.collegetocareers.com/uc-tags-uclas-tap/

    Just above the tags I have your plugin…however, the icons are not showing up…

    I’d like to give this plugin a shot, can you help? I would like it to appear just as you have it on this page below this field.

    Thanks,

    Nohel

    • David says:

      Apologies for the delay in authorising your comment – it had fallen into “spam”, for some reason.

      Looking at your site it now appears to be working, so can I assume you’ve resolved the issue?

  24. Arlen says:

    This is the page that is highly ranked, when I search for “simple social bookmarks.” So naturally, I was hoping to see what they looked like, either here or from some page clearly linked from this page.

    • David says:

      After each post and page on this site, is a strip of social bookmarks produced using the plugin. In the case of pages, it is above the comments. However, how they look is up to you – you can apply CSS changes and modify the icon set.

  25. tony says:

    I’ve tried several plugins on bookmarks, and this is a nice clean and simple implementation and doesn’t distract from the page content.

    If would be nice to have the option of having text only links. I’ve use the default image links on my single posts and pages, but on listing pages (categories & archive) a find the icons a little repetitive and want just text links. If I specify an unknown iconfolder, it will work in Firefox and give me the alt text but in Safari, Chrome etc I get broken image links shown instead of the alt text.

    • David says:

      Thanks for the comment Tony, and I’m glad you like it. You’ll be glad to hear that I’ve been intending to implement a text only option for a while, so I’ll include it in the next release.

  26. Daniel Saunders says:

    After trying all the plugins on bookmarks I could find!
    THIS ONE is my absolute favorite! Easy, clean and good looking

  27. Rod Davis says:

    Why can’t this be a widget, or at least short code?

  28. Marco says:

    Is there a way to sort the icons? I dont like the standart order, but delicious is always first

    • David says:

      No – the icons appear alphabetically. However, if you set the default to display no icons and then specify them individually, they will appear in that order.

  29. harshal says:

    Hey,

    Thanks for wonderful plugin. Its very simple and cool look. I used on my website dealsbell.com. Is there any way we can check which post has been shared a most. who has shared? on which dates and all. if you can provide that then it would be wonderful help.

    Thanks again.

  30. harshal says:

    Hi,

    not like google analytics we need who has publish my post in facebook, his id,
    his country, on what date etc.. I am ready to pay for it..

    • David says:

      Google Analytics would give you separate details for each bookmark used, including country, date, etc. However, I can’t log Facebook specific information without using the API, which I don’t.

  31. harshal says:

    Ok. thats fine…

    Thank you for your quick answers.

No Pingbacks/Trackbacks