I have created a user profile content type, and successfully imported my users.
Members are approved registered users.
I want my members to have the privilege of searching for other members and viewing their profiles (or at least the content area of their content type).
I figured how to create a link for the admin to edit their profile on their behalf in the front-end, e.g.:
$link = 'index.php?option=com_cck&view=form&layout=edit&type=content_type_name&id=';
$link .= $cck->get('user_id')->value;
$link .= '&Itemid=xxx'; ?>
Do anyone know how to simply link to the user's profile as a view (non-edit)?