Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,255
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,907
- Showcase
- 3,252
-
Another way to remove the (frankly awful) table tags is to make use of PHP’s output buffering.
function cleanForm($buffer){
// do a str_replace on $buffer to remove the table tag and replace with <div>s, or whatever you fancy and return it
$buffer = str_replace('replace me', 'with me', $buffer);
return $buffer;
}
ob_start(“cleanForm”);
bb_profile_data_form();
ob_end_flush();
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS