tgycgijoes Posted January 4, 2013 Report Share Posted January 4, 2013 I have created awards for our va and have no problem adding them to the pilots and they display just fine when you click the pilot id. What I would like to have and don't know how to code this so please help if you can, what do I need to add where to get the awards to appear in a horizontal row under each pilot when anyone guest or not clicks the Pilots tab on the main page of the phpvms of our va site. Quote Link to comment Share on other sites More sharing options...
Fernando Posted January 4, 2013 Report Share Posted January 4, 2013 tgycgijoes You must enter the code were horizontal in Pilot_Public_profile or Profile_main? *Enter this code in your page profile_main.tpl <?php if(!$allawards) { echo 'This pilot did not receive awards'; } else { foreach($allawards as $award){ ?> <img src="<?php echo $award->image; ?>" alt="<?php echo $award->descrip; ?>" /> <?php } } ?> *Enter this code in your page Pilot_public_profile.tpl <?php if(!$allawards) { echo '<center><img src="http://www.voegolv.n...g_recusado.png" border="0" /><br><font face="Trebuchet MS" size="2">Piloto sem Awards.</font></center>'; } else { /* To show the image: <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" /> */ ?> <?php foreach($allawards as $award){ ?> <img src="<?php echo $award->image?>" alt="<?php echo $award->name ?> - <?php echo $award->descrip?>" /> <?php } ?> <?php } ?> Website: www.voegolv.net Quote Link to comment Share on other sites More sharing options...
Tato123 Posted May 24, 2013 Report Share Posted May 24, 2013 Hello, but if i wont to see the award in pilot list? Quote Link to comment Share on other sites More sharing options...
Steve Bartlett Posted June 26, 2013 Report Share Posted June 26, 2013 Something is not working right, the pictures of the awards are not showing up, yes they are in the Database and are able to assign the awards Quote Link to comment Share on other sites More sharing options...
Steve Bartlett Posted June 27, 2013 Report Share Posted June 27, 2013 Something is not working right, the pictures of the awards are not showing up, yes they are in the Database and are able to assign the awards Disregard, got it working Quote Link to comment Share on other sites More sharing options...
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.