I feel like I have the hang of this, but for some reason I can't get this to work. I want to display the users Twitter name under the image they've uploaded and for it to be a link to their Twitter page.
I've created a custom field named [twitter_name]. Which is displayed in the upload form.
Here's the code...
HTML Layout (no styling yet)
<li>
<div>
<a href='[image_url]'>[thumb_image]</a>
<a href='http://www.twitter.com/[twitter_name]' target='_blank'>[twitter_name]</a>
</div>
</li>
Wrapper (used from one of the other layouts)
<span style='float:right;'>[piclens]</span><div class='clear'></div>
<h3>[gallery_name] Gallery</h3>
<div class='bwbps_gallery_container0'>
<ul class='bwbps_gallery'>
[gallery]
</ul>
<div style='clear:both;'></div>
</div>
So I just can't get the [twitter_name] to give an output at all. Any ideas? Am I just not understanding how it works?
Thanks for the help.
resolved