Skip to content

Instantly share code, notes, and snippets.

/*
If you are using BP 2.1+, this will insert a Country selectbox.
Add the function to bp-custom.php and then visit .../wp-admin/users.php?page=bp-profile-setup
Remove this function after the field is created.
*/
function bp_add_custom_country_list() {
if ( !xprofile_get_field_id_from_name('Country') && 'bp-profile-setup' == $_GET['page'] ) {
re: http://buddypress.org/support/topic/show-only-members-with-avatars-on-member-loop/
untested, but cleaned up...
/********* SEARCH MEMBERS BASED ON PROFILE FIELDS *********/
function gd_custom_ids( $field_name, $field_value = '' ) {
if ( empty( $field_name ) )
return '';
@shanebp
shanebp / gist:5561044
Last active May 20, 2021 08:48
add subnav link to profile -> friends
add_action( 'bp_setup_nav', 'add_videos_subnav_tab', 100 );
function add_videos_subnav_tab() {
global $bp;
bp_core_new_subnav_item( array(
'name' => 'Videos',
'slug' => 'videos',
'parent_url' => trailingslashit( bp_loggedin_user_domain() . 'friends' ),
@shanebp
shanebp / buddypress PST time correction
Created May 1, 2013 19:34
Filter time if off by 7 hours
// add 7 hours in the filters below
function shane_local_time( $timestamp ) {
$unixTimestamp = strtotime( $timestamp );
$unixTimestamp = $unixTimestamp + (7 * 3600);
$filtered_time = date("Y-m-d H:i:s", $unixTimestamp);
return $filtered_time;
@shanebp
shanebp / gist:5391229
Created April 15, 2013 20:56
BuddyPress - add message button in members loop
function filter_message_button_link( $link ) {
$link = wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( bp_get_member_user_id() ) );
return $link;
}
function display_private_message_button() {
if( bp_get_member_user_id() != bp_loggedin_user_id() ) {
bp_send_message_button();
add_filter('bp_get_send_private_message_link', 'filter_message_button_link', 1, 1 );
@shanebp
shanebp / gist:3353337
Created August 14, 2012 21:48
BuddyPress - Group Extension API - delete button
//within the plugin and within the Extension class
function edit_screen() {
...
<?php if ( is_user_logged_in() && function_exists( 'bp_delete_test_page_link' ) ) : ?>
<a class="button confirm" href="<?php bp_delete_test_page_link(); ?>">Delete Test Page</a>
<?php endif; ?>
...
}