Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of hnla

Support: Creating & Extending

Existing and new plugins/components and themes.

Google Buzz button (3 posts)

Started 1 year, 6 months ago by: Simon Dabkowski

  • Profile picture of Simon Dabkowski Simon Dabkowski said 1 year, 6 months ago:

    Hi guys,
    Quick and simple way to intergrade Google Buzz on your activity page AND link directly to the permalink of each activity:

    Here’s a txt file with quick instructions: http://www.h-mag.com/google-buzz/code.txt

  • Profile picture of r-a-y r-a-y said 1 year, 6 months ago:

    Instead of modifying a template file, you can also hook into the following action:
    bp_activity_entry_meta.

    function my_gbuzz() {
    echo ‘whatever’;
    }
    add_action( ‘bp_activity_entry_meta’, ‘my_gbuzz’ );

  • Profile picture of Simon Dabkowski Simon Dabkowski said 1 year, 6 months ago:

    thanks @r-a-y