Re: Profile Edit not working
Thanks – your answer got me there. What happen was there was no group in the DB with an id=1 so therefore BP was looking for something that wasn’t there and new entries started from 2. Presumably the following SQL code (or something similar) should have been run by BuddyPress in the initial installation???
INSERT INTO 'wp_bp_xprofile_groups' ( 'id' , 'name' , 'description' , 'can_delete' )
VALUES (
'1', 'Basic', '', '0'
);
Its all working now, Thanks!!!