Index: bp-xprofile-templatetags.php
===================================================================
--- bp-xprofile-templatetags.php	(revision 1807)
+++ bp-xprofile-templatetags.php	(working copy)
@@ -397,6 +397,8 @@
 						$selected = '';
 					}
 					
+					apply_filters( 'bp_get_the_profile_field_options_select', $options[$k] );
+					
 					$html .= '<option' . $selected . ' value="' . attribute_escape( $options[$k]->name ) . '">' . attribute_escape( $options[$k]->name ) . '</option>';
 				}
 				break;
@@ -418,6 +420,8 @@
 						$selected = '';
 					}
 					
+					apply_filters( 'bp_get_the_profile_field_options_radio', $options[$k] );
+					
 					$html .= '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . attribute_escape( $options[$k]->name ) . '"> ' . attribute_escape( $options[$k]->name ) . '</label>';
 				}
 				break;
@@ -441,6 +445,8 @@
 						}
 					}
 					
+					apply_filters( 'bp_get_the_profile_field_options_checkbox', $options[$k] );
+					
 					$html .= '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . attribute_escape( $options[$k]->name ) . '"> ' . attribute_escape( $options[$k]->name ) . '</label>';
 					$selected = '';
 				}
@@ -563,6 +569,8 @@
 			$selected = '';
 		}
 		
+		apply_filters( 'bp_profile_group_tabs', $groups[$i] );
+		
 		if ( $groups[$i]->fields )
 			echo '<li' . $selected . '><a href="' . $bp->displayed_user->domain . $bp->profile->slug . '/edit/group/' . $groups[$i]->id . '">' . $groups[$i]->name . '</a></li>';
 	}
