Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Move profile fields to another field group?


Devrim
Participant

@devrim

Hi Peter, I had the same problem, here is the code that will move everything from group_id 1 to group_id 3

Check the id of the secondary group and change the number 3.

require_once(‘wp-blog-header.php’);

$x = $wpdb->get_results(“SELECT * FROM wp_bp_xprofile_fields WHERE group_id=1 and is_required=0”);

foreach($x as $k=>$v){

$wpdb->update(‘wp_bp_xprofile_fields’,array(‘group_id’=>3),array(‘id’=>$v->id));

}

Skip to toolbar