How can one make AddToAny toolbar work with bbPress (WP plugin)
How can one make AddToAny toolbar work with bbPress (WP plugin)
Interested to see this too
Next version will allow more customization as far as placement (i.e. ability to disable sharing output on Archive pages such as the page with the list of Forums).
Note that automatic placement for bbPress pages won't be immediately implemented, though you can still hardcode sharing in bbPress theme files. For instance, it makes sense to hardcode sharing in your single-topic.php bbPress theme file.
See "How can I add both the button and the individual icons to another area of my theme?" in the FAQ. It's not much code; either:
<?php if( function_exists('ADDTOANY_SHARE_SAVE_KIT') ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>
or:
<?php if( function_exists('ADDTOANY_SHARE_SAVE_KIT') ) {
ADDTOANY_SHARE_SAVE_KIT( array("use_current_page" => TRUE) );
} ?>You must log in to post.