Custom Profile Fields - Ordering and Display
Posted: 10 Mar 2010, 22:09
Database and Demo for phpBB3 BBCodes, Mods and Smilies
https://phpbb3bbcodes.com/
whichever CPF you are using you must do the edits exactly the same and make sure the name in the are the same otherwise they will not show up!Caldazar ยป 02 Apr 2010, 22:46 wrote:Does not seem to work on the version im using.....
Nothing shows up, tho i do have different options to what you show in your screen shot with this, on phpbb 3.0.7 (+stargate 1.0.5)
YouTube Favourite
Lets add our YouTube Favourite, but only in profile.
First you need to create the custom profile field in ACP
Open styles/prosilver/template/memberlist_view.html
Find:Before add:Code: Select all
<!-- IF SIGNATURE -->
Here you go, your favourite youtube video in your profile:Code: Select all
<!-- BEGIN custom_fields --> <!-- IF custom_fields.PROFILE_FIELD_NAME eq "YouTube Favourite" --> <div class="panel bg1"> <div class="inner"><span class="corners-top"><span></span></span> <h3>{custom_fields.PROFILE_FIELD_NAME}</h3> <div style="text-align:center;"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/{custom_fields.PROFILE_FIELD_VALUE}"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{custom_fields.PROFILE_FIELD_VALUE}" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div> <span class="corners-bottom"><span></span></span></div> </div> <!-- ENDIF --> <!-- END custom_fields -->