PriMoThemes — now s2Member® (official notice)
This is now a very OLD forum system. It's in READ-ONLY mode.
All community interaction now occurs at WP Sharks™. See: new forums @ WP Sharks™
$s2_custom_fields = get_user_option('s2member_custom_fields', $user_id);
$user_id = 6;
update_user_meta($user_id, 'b_city', 'New City Name');
update_user_option($user_id, 'b_city', 'New City Name')
$s2_custom_fields = get_user_option('s2member_custom_fields', $user_id);
echo "first time value is:".$s2_custom_fields['first_time']."<br/>";
update_user_option($user_id, 'first_time', 'No');
$s2_custom_fields = get_user_option('s2member_custom_fields', $user_id);
echo "Now first time value is:".$s2_custom_fields['first_time'];
$s2_custom_fields = get_user_option('s2member_custom_fields', $user_id);
echo 'First time value is: ' . ($s2_custom_fields['first_time'] ? 'true' : 'false') . '<br/>';
$s2_custom_fields['first_time'] = false;
update_user_option($user_id, 's2member_custom_fields', $s2_custom_fields);
$s2_custom_fields = get_user_option('s2member_custom_fields', $user_id);
echo 'Now first time value is: ' . ($s2_custom_fields['first_time'] ? 'true' : 'false') . '<br/>';
Users browsing this forum: No registered users and 3 guests