This document provides an overview of customizing BuddyPress to better fit specific needs. It demonstrates how to customize profile fields and components, theme BuddyPress using a child theme, leverage plugins and extensions, and use hooks and filters to modify output. Examples are given of customizing slugs, languages, CSS, and adding content to profile pages. Resources for the BuddyPress codex, forums, and plugin directory are also listed.
1 of 26
Downloaded 15 times
More Related Content
Get Thee Behind Me: Making BuddyPress do thine bidding
1. Get thee behind me! Making BuddyPress do thine bidding Boone Gorges @boonebgorges [email_address] http://teleogistic.net
2. ¡° Facebook in a box¡± Friends Extended profiles Groups Forums Interactive activity streams
22. Tools Group extension API http://codex.buddypress.org/developer-docs/group-extension-api/ Skeleton component http://wordpress.org/extend/plugins/buddypress-skeleton-component/
23. Hooks and filters function how_bad_ass_am_i() { global $bp; $user_id = $bp->displayed_user->id; $user_name = $bp->displayed_user->fullname; $user_url = $bp->displayed_user->domain; echo '<a href="' . $user_url . '">' . $user_name . '</a> is bad ass #' . $user_id . ' on this site.'; } add_action( 'bp_before_profile_field_content', 'how_bad_ass_am_i' ); bp-custom.php