The button is being displayed with horizontal counter regardless of value of tweetbutton_button variable. The bug is rather simple - maybe just a copy-paste typo.
See tweetbutton.module:

function tweetbutton_node_view($node, $view_mode) {
...
        'title' => theme('tweetbutton_display__' . $node->type, array('object' => $node, 'options' => array('type' => 'horizontal'))), 
...

tweetbutton_button value is not being read and is hard-coded 'horizontal'.
See the patch attached for workaround.

CommentFileSizeAuthor
tweetbutton.patch669 bytesiamweird
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

djmy’s picture

Version: 7.x-1.x-dev » 7.x-2.x-dev

hi @iamweird. Is there a patch for this issue for the 7.2x dev? I love the new features on the 7.2 but i keep getting the button horizontal and not vertical. Any help is very much appreciated!

chia’s picture

You can change button type from field formatters under "Manage Display" if fields UI page.

djmy’s picture

Status: Active » Closed (fixed)

That worked! Thank you chia!!!