Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,018
- How-to & Troubleshooting
- 129,639
- Creating & Extending
- 25,793
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,791
- Showcase
- 3,316
- Ideas
- 1,382
- Miscellaneous
- 9,179
-
You could use jQuery to select the “for” attribute so you can hide it.
Read up on jQuery selectors:
http://docs.jquery.com/Selectors/attributeEquals
Try this:
<script type="text/javascript">
$(document).ready(function(){
$("label[for='field_3']").css({'display' : 'none'});
});
</script>
You’ll need to have the jQuery library somewhere in your HTML source.