Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: group creation error: Are you sure you want to do this?


Josh McKenney
Participant

@jmckenney

I believe I have found a solution! Found it here:
http://ghostpool.com/support/topic/buddypress-groupsforums-creation-problems

All I know is my groups are now being created and that’s a very, very good thing. Here’s what the author of the above links suggests adding to functions.php:

`
// Disable Thickbox To Prevent BuddyPress Conflict
add_action( ‘wp_print_scripts’, ‘my_deregister_javascript’, 100 );
function my_deregister_javascript() {
if(!is_admin()) {
wp_deregister_script( ‘thickbox’ );
}
}
`

IT WORKED FOR ME:)

Skip to toolbar