Jump to content

Recommended Posts

Posted

Can someone provide me with the code to put in profile_main.tpl in order to display the info from one of the custom profile fields in the Pilot Centar Pilot Profile :)

I hope you understand :)

  • Administrators
Posted

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 />';
}
}
?>

Posted

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

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

what module?
  • Administrators
Posted

Whichever one you are using for your display, if it is the pilot main profile page for the pilot themselves you should be using the profile module index function.

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...