It would be nice to add the Google Plus, +1 feature to this set of already awesome social widgets.

Comments

fugazi’s picture

6.x-2.0 would be interested too

manoloka’s picture

subscribe

patrickroma’s picture

Subscribe for 6.x-2.0

vacilando’s picture

Also in favour of a D6 version.

infines’s picture

It's best to not constantly insist on a D6 version. After a patch is submitted for a D7 version, then we can either close this issue and open one for D6 or we can change the version to D6. In the mean time if you're replying to subscribe to an issue, use the Follow button at the top of the issues. That saves everyone a headache of thinking there is development/patch/new information within the issue.

ISPTraderChris’s picture

While the numbers may be shifting, this module still has a greater number of 6.x installs. I don't think anyone is being unreasonable in requesting 6.x functionality.

infines’s picture

Then open an issue for 6.x

Carlos Miranda Levy’s picture

Google Plus support is not a module issue, but an issue of the actual service - http://sexybookmarks.shareaholic.com/ by http://www.shareaholic.com/

attheshow’s picture

@Carlos I'm not so sure you're right. If you look at the blog posts on the shareaholic website, those actually have a plus 1 button on them. Take a look at this one as an example. You'll see the +1 button at the bottom of the post.
http://blog.shareaholic.com/2010/08/leaner-faster-smarter-shareaholic-fo...

attheshow’s picture

Just downloaded the Wordpress plugin from Shareaholic to take a look at their source code. Looks like it's had the +1 button included since version 4.0.2. The most current release is 4.0.6.4. Digging in to see if I can figure out what to do.

attheshow’s picture

FYI, I ended up adding two things to my theme in order to add this in (instead of trying to figure out how to patch the module, which looked pretty involved).

This is for D6.
template.php:

function THEMENAME_preprocess_node(&$vars) {
  if ($vars['type'] == 'story') { // I only wanted to add it into news stories.
    $vars['content'] = $vars['content'] . "<script type=\"text/javascript\" src=\"https://apis.google.com/js/plusone.js\"></script>\n<div style=\"float: right; clear: both;\"><div class=\"g-plusone\" data-size=\"small\" data-annotation=\"inline\" data-width=\"120\"></div></div>\n";
  }
}

And into my theme's style.css (to make the Facebook icon line up with the +1):

a.shareaholic-fb-like {
  margin-right: 30px;
}
MacaroniDuck’s picture

Subscribe! Am very interested in using this module over similar ones, but very much need Google Plus to be included.

attheshow’s picture

FYI, we ended up dropping this module in favor of using AddThis.com instead. It's not a module, just an HTML snippet that you embed into your template file(s).

jesaonline’s picture

BUMP.

I agree that G+ support is desired. Also, it should be in the 6.x version because there are many sites that cannot go to 7.x yet due to lack of module/upgrade path.

Thanks!
Adrianna

Anonymous’s picture

subscribing

zarkinfrood’s picture

There is a wordpress version that came out last year that has google plus on this.

Has anyone succesfully hacked this thing yet?

zarkinfrood’s picture

OK,

This isnt terribly hard.

There are 3 files you need to update ( possibly only one)

/plugins/export_ui/sexybookmarks_profiles.inc

line 242 has an array of numbers. These correspond to the list of services found here:

http://www.shareaholic.com/media/js/jquery.shareaholic-publishers-sb.js

starting at line: 2106 you can find everything available from shareaholics.
Google Plus is # 304. Add this to your array and clear your cache.

The other 2 files with these references are in
/sexybookmarks.module
/includes/sexybookmarks.inc

But these are default settings... hard to say if they impact what is available or what is default.

Also, you might want to sign up for your own Shareaholic API key. Not sure what info is trading places here, and they do not seem to be domain specific.

Norberto Ostallo’s picture

The patch in #1541216: Fix for missing services updates the service list, adding Google + too.
It does has described in #18, updating the services array.

shareaholic’s picture

Issue summary: View changes

SexyBookmarks module is no longer being actively maintained. It was a port of Shareaholic for WordPress, and Shareaholic has since released an official Drupal module:

http://drupal.org/project/shareaholic

Please migrate to the official Shareaholic for Drupal module, which has updated buttons, styles, services, 100% mobile-ready and much more! You can learn more here: https://blog.shareaholic.com/drupal-module/

shareaholic’s picture

Version: 7.x-2.0 »
Status: Active » Closed (fixed)