Solved the problem of incompatibility with the plugin Buddypress 1.7.1
The file bp-gifts-core.php locate the following lines
$bp->gifts->id = 'gifts';
$bp->gifts->table_name = $wpdb->base_prefix . 'bp_gifts';
$bp->gifts->table_name_data = $wpdb->base_prefix . 'bp_gifts_data';
$bp->gifts->format_notification_function = 'bp_gifts_format_notifications';
$bp->gifts->slug = BP_GIFTS_SLUG;
Append the following line to the code
if( !is_object( $bp->gifts ) ) {
$bp->gifts = new stdClass;
}
https://take.ms/x8J6t screenshot