Thanks, I understand the concept. I need a bit more help though:
1. How do I display the specific user fields, assuming they all start with m_ (i.e. m_body_length, m_waist_length). I would like to use the foreach construct to loop through them and put them in a table, just like the custom fields are processed in the default view.
something like:
$user = hikashop_loadUser(true);
foreach($user->Fields as $field ...filter on fieldname starts with 'm_'...
{
...create table rows containing label and value...
}
2. How do I make them editable in this step, just like the custom fields are.
Sorry, I'm a c# man, just cannot figure out how to do it in php