Using Cimy User Extra Fields on custom sign up page
-
I want to manually add values to the ‘wp_cimy_uef_data’ database from a custom signup page. Every time I add a value I get a duplicate row in my database. How do I prevent duplication? Here is the code I am using to manually insert values:
$wpdb->insert( 'wp_cimy_uef_data', array( 'ID' => $last_id+1, 'USER_ID' => $status, 'FIELD_ID' => 1, 'VALUE' => 'This is a sample value'), array( '%d', '%d', '%d', '%s' ) );
- The topic ‘Using Cimy User Extra Fields on custom sign up page’ is closed to new replies.