Quote:
Originally Posted by NP Carling26
There is an error that causes all items in the profile portion of the postbit to become hotlinked to your twiter account. If some new HTML code that fixes this could be released, that'd be great!
|
The code UKBL originally listed is missing the closing tag for a href i.e. here is his code:
Code:
<if condition="is_member_of($bbuserinfo, 6, 7, 9)">
<if condition="$post['field11']">
<a href="https://twitter.com/$post[field11]">
<img alt="My Twitter" border="0" src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/twitter3.gif" border="0"/>
</if></if>
Which should be this:
Code:
<if condition="is_member_of($bbuserinfo, 6, 7, 9)">
<if condition="$post['field11']">
<a href="https://twitter.com/$post[field11]">
<img alt="My Twitter" border="0" src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/twitter3.gif" border="0"/></a>
</if></if>
As you can see I simply added the </a> at the very end which will now render the rest of your links properly as that tag is closed otherwise it does assume the worst and applies that URL to all others etc.