Sorry if this has already been explained, but I can't figure out how to change the type of toolbox?

I'd like to display the number of tweets, facebook likes etc (as it does on the bottom toolbox in the module's preview image)

Is this achievable?

Comments

wcarpent’s picture

I would also find this helpful. Subscribing...

dlthomas’s picture

Any thoughts? Or does anybody know anything else that will put facebook, twitter counters etc on nodes & teasers?

riteshchopra’s picture

I am also looking for this. Is it possible in current release?

dlthomas’s picture

I haven't had any luck with this module, but have used two other modules along side it to get the sort of thing I need

Tweet Button & Facebook Share will give you counters on nodes and node teasers

Would still be good if this module could count though!

jacobroufa’s picture

I'm pretty sure this feature has been implemented in the 7.x branch... I've been using 6.x. Go to the "Customize Services" tab and click "Add a service customization" and fill out the form as follows and click save :

Service code: fb_like_counter or twitter
HTML classes: addthis_button_facebook_like or addthis_button_tweet
HTML attributes: fb:like:layout="button_count" (or standard or box_count) or tw:count="vertical" (or horizontal)

m.e.’s picture

I'm using 7.x-2.1-beta1 and I don't see a Customize Services tab. All I have is General Settings, Button Image Settings, and Widget Settings. In fact, my install looks very much like the 6.x branch. Something missing here?

les lim’s picture

7.x-2.x doesn't support the toolbox. Not sure what the state of development on any 7.x branch is at the moment.

WilliamV’s picture

Interested as well!

pixelsweatshop’s picture

me too!

vcardillo’s picture

Also interested.

theamoeba’s picture

subscribing

jarrodirwin’s picture

subscribing

monican’s picture

+1

shamilh’s picture

subscribing

pixelsweatshop’s picture

For those of you looking for this feature right away, there is a stable D7 release of the sharethis button that allows you to easily customize the "toolbox" directly in the Drupal UI. http://drupal.org/project/sharethis

Avalanche’s picture

I would also like to know how to do this, or have it implemented.

derekahmedzai’s picture

You can change the layout in your theme template.php
Here's an example using the generic Facebook/Twitter/Google+ toolbox

/**
 * Theme the AddThis buttons
 */
function YOUR_THEME_NAME_addthis_button($variables) {
	return (sprintf('
		<!-- AddThis Button BEGIN -->
		<div class="addthis_toolbox addthis_default_style ">
		<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
		<a class="addthis_button_tweet"></a>
		<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
		<a class="addthis_counter addthis_pill_style"></a>
		</div>
		<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=%s"></script>
		<!-- AddThis Button END -->',
		variable_get('addthis_username', '')
	));
}
matglas86’s picture

Please take a look at #628486: [meta] AddThis 7.x-4.x. I'm working on 7.x-4.x-dev very hard but where possible input and testing is very welcome. It's not in a stable state yet but this version will help you out with all the above mentioned problems in a very practicle and intuitive way.

gisle’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

Version 7.x-2.1-beta1 is no longer supported. Closing as outdated.

If this support request is still relevant for the 7.x-4.x branch of AddThis, please open a new issue for this and describe the problem in terms relevant to the 7.x-4.x branch.