Hey,
I'm using 'Community Builder' to build some profile data (fe address, birthday...).
And i would like to use this now in some form. That some fields are filled in with the data.
Today, it's working great for the standard username and so in a 'custom code':
But i would like to pull some data now from the CB tables:
Table: db_comprofiler
fiels: cb_birth, cb_street, cb_state......
Is it possible to do this?
I'm using 'Community Builder' to build some profile data (fe address, birthday...).
And i would like to use this now in some form. That some fields are filled in with the data.
Today, it's working great for the standard username and so in a 'custom code':
<?php
$user =& JFactory::getUser();
$form->data['user_email'] = $user->email;
$form->data['user_lidnummer'] = $user->username;
$form->data['user_id'] = $user->id;
$form->data['user_naam'] = $user->name;
?>
But i would like to pull some data now from the CB tables:
Table: db_comprofiler
fiels: cb_birth, cb_street, cb_state......
Is it possible to do this?