Jump to content

Coding help


Sava

Recommended Posts

  • Administrators

You will need to fill a variable in your module with the extra fields first;

$this->set('allfields', PilotData::getFieldData($pilotid);

Then in your template something like this from the public profile should work;

<?php
// Show the public fields
if($allfields)
{
foreach($allfields as $field)
{
	echo '<strong>'.$field->title.': </strong>'.$field->value.'<br />';
}
}
?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...