Quick question. Say a user enters a specific thing in their profile that's required (like a screenname for example). How would one go about adding that profile field to the postbit?
3.0.x or 3.5.0? What were you thinking of exactly? Is it a hack that would be publicly released, or one just for your forums? (the diff is how much code you'd hard code)
@ Wired1 - You're looking too deep into this request. It's the simple answer that's needed.
@ PTO - Use
Code:
$post[fieldx]
in the postbit or postbit_legacy template where x is the number of the field that you wish to display. You can place this anywhere in the postbit template but a good place is normally around where the location field is. Just search through the template till you find location, go to the end of that if condition and add the above code. If you want it labeled just add the label to the template before the above code.
@ Wired1 - You're looking too deep into this request. It's the simple answer that's needed.
@ PTO - Use
Code:
$post[fieldx]
in the postbit or postbit_legacy template where x is the number of the field that you wish to display. You can place this anywhere in the postbit template but a good place is normally around where the location field is. Just search through the template till you find location, go to the end of that if condition and add the above code. If you want it labeled just add the label to the template before the above code.
Awesome, thanks .
@ Wired1: Heh thanks for trying. Just needed something simple like what peterska2 suggested.