Hi there,
I think it should, so could you open an issue on github for this? There, we can get our bbPress expert to look at it:
https://github.com/Automattic/jetpack/issues/new
Thanks!
I’m sorry, but isn’t this the official support pages for Jetpack plugin? Why do i need to go to another site?
Hi, bbPress doesn’t support the sharing icons, so this isn’t a bug with Jetpack. I’ve opened an issue for you in any case, to see if there’s a way we can make the sharing icons appear without getting bbPress to change their code.
https://github.com/Automattic/jetpack/issues/426
Until we fix this bug in Jetpack, you should be able to fix the problem on your site by adding this code snippet to your theme’s functions.php or to a functionality plugin:
https://gist.github.com/deckerweb/4706862
Thanx a lot Jeremy, it worked like a charm! π You don’t happen to have a similar code snippet for adding the share button to BuddyPress activities?
I’m afraid I’m not really familiar with BuddyPress. I would suggest posting in their support forums, someone should be able to help you by giving you the filter you can hook into on these Activity pages. You can then add one more line to the previous code snippet, like so:
add_action( 'filter_name', 'ddw_jetpack_sharing_bbpress');
Will do. Thanx again for the code, it works great! π
When my Jetpack sharing started to fail becaouse of some faulty .php file, i whent through all my childs .php files and i noticed that this code does not have a trailing ?>. Is this correct coding?
Yes. Omitting the closing PHP tag is quite common, and won’t cause any issues. You can read more about it here:
https://stackoverflow.com/questions/4410704/why-would-one-omit-the-close-tag