Currently, the WordPress ShareDaddy plugin does not have a Google + 1 button. Luckily, shazron.com found a solution for this here.
The author modified the sharing-service.php file and added the highlighted code below:
$parts = array();
if ( $global['sharing_label'] != '' )
$parts[] = '<li class="sharing_label">'.$global['sharing_label'].'</li>';
$parts[] = $visible;
if ( count( $enabled['hidden'] ) > 0 )
$parts[] = '<li class="share-custom"><a href="#" class="sharing-anchor">'._x( 'Share', 'dropdown button', 'jetpack' ).'</a></li>';
// CRAMMING in Google Plus One
$parts[] = '<li class="share-g-plus-one share-regular">' . do_shortcode('[google1]') . '</li>';
if ( $dir == 'rtl' )
$parts = array_reverse( $parts );
$sharing_content .= implode( '', $parts );
$sharing_content .= '<li class="share-end"></li></ul>';
Then used this plugin: Google +1 Button for it to work. Alternatively, you can also use this plugin: The Google +1 plugin and from the highlighted code replace “google1″ with “wgdpo_plusone”.
Don’t forget to create a backup copy of the sharing-service.php file first before trying this out.
Full credit goes to the original author.
June 7th, 2011 by jdGONEMAD | 10 Comments »