Sava Posted September 3, 2011 Report Posted September 3, 2011 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 Quote
Administrators simpilot Posted September 4, 2011 Administrators Report Posted September 4, 2011 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 />'; } } ?> Quote
Sava Posted September 4, 2011 Author Report Posted September 4, 2011 You will need to fill a variable in your module with the extra fields first; $this->set('allfields', PilotData::getFieldData($pilotid); what module? Quote
Administrators simpilot Posted September 5, 2011 Administrators Report Posted September 5, 2011 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. Quote
Sava Posted September 6, 2011 Author Report Posted September 6, 2011 I mean the exact file name because I am not understanding a single word. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.