Custom Profile Fields - Ordering and Display

Guides & Snippets for phpBB3.
Try the Snippets here and share Your own Snippets

Re: Custom Profile Fields - Ordering and Display

Post by cisco007 »

try to replace this:

Code: Select all

<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>
with this!

Code: Select all

<div style="text-align:center;"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/{custom_fields.PROFILE_FIELD_VALUE}&autoplay=1"></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}&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
see if that works!

Re: Custom Profile Fields - Ordering and Display

Post by apnaitaly »

thanks for reply cisco

but its not working ,,

Re: Custom Profile Fields - Ordering and Display

Post by cisco007 »

yeah, sorry that was for a music embed code i had, for youtube, i have updated the replacement code on my previous post that works!

Re: Custom Profile Fields - Ordering and Display

Post by apnaitaly »

yes thanks Cisco now its workinggg thanks you so much