Hello,

i just found out that the share-button layout box_count doesn't work in 6.x-1.0-beta9.
It just not shows anything. Other layouts like button_count work.

I found the solution for this problem too:

Line 51 in fb_social/modules/fb_social_share/fb_social_share.admin is

    '#options' => array(' box_count' => t(' box_count'), 'button_count' => t('button_count'), 'button' => t('button'), 'icon' => t('icon'), 'icon_link' => t('icon_link'))

but should be

    '#options' => array('box_count' => t('box_count'), 'button_count' => t('button_count'), 'button' => t('button'), 'icon' => t('icon'), 'icon_link' => t('icon_link'))

The whitespaces before 'box_count' are the problem. Remove them and the share-button shows up in box_count-layout.

maybe this helps someone and can be fixed in next beta.

Greetings

Methos76