This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Disable Buddypress Registration | |
*/ | |
function yzc_disable_bp_registration() { | |
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); | |
remove_action( 'bp_screens', 'bp_core_screen_signup' ); | |
} | |
add_action( 'bp_loaded', 'yzc_disable_bp_registration' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'yz_show_profile_comments_tab_if_user_has_comments', '__return_false' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Show Only Friends and Groups Activities | |
*/ | |
function yzc_friends_and_groups_only_activity_args( $args ) { | |
if( ! bp_is_activity_directory() || ! is_user_logged_in() ) { | |
return $args; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add My Member Directory My Profile Link. | |
*/ | |
function yzc_add_md_my_profile_link() { | |
if ( ! bp_is_members_directory() || ! is_user_logged_in() ) { | |
return; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add Content Above Members Directory. | |
*/ | |
function yzc_add_content_above_members_directory() { | |
// Add content here. | |
echo 'add content here'; | |
} | |
add_action( 'bp_before_directory_members', 'yzc_add_content_above_members_directory' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Sort last commented posts to the top of activity line | |
* Source: http://techiescircle.com/move-new-commented-activity-stream-to-top/ | |
*/ | |
function yzc_bp_activity_bump_comment_posted( $comment_id, $params ) { | |
global $bp, $wpdb; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Change Lost Password Page Link. | |
*/ | |
function yzc_change_lost_password_link( $old_link ) { | |
return 'https://www.yoursite.com/put-new-lost-password-page-link-here'; | |
} | |
add_filter( 'yz_lostpassword_url', 'yzc_change_lost_password_link', 100 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Sync About Me Widget - Image. | |
*/ | |
function yzc_sync_profile_about_me_widget_image( $photo_url = null, $user_id ) { | |
if ( ! empty( $photo_url ) || bp_is_current_component( 'widgets' ) ) { | |
return $photo_url; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Change Cover Image Size. | |
*/ | |
function yzc_attachments_get_cover_image_dimensions( $wh ) { | |
return array( 'width' => 1350, 'height' => 350 ); | |
} | |
add_filter( 'bp_attachments_get_cover_image_dimensions', 'yzc_attachments_get_cover_image_dimensions', 99 ); |
NewerOlder