PDA

View Full Version : Hi


mindgrinder
01-02-2007, 02:35 AM
Hi,

at my forum www.iyogiforum.com http://iyogiforum.com/forum/showthread.php?t=3 (username: test, pass: 12345) i have added a signature with HTML link to my bitwine profile
http://bitwine.com/advisors/anuj

i want a mod, which can create a field in user profile like MSN, ICQ etc. the person should be able to paste the html link in there profile. and an icon for bitwine appears on postbits, like MSN or Skype icon after putting them in profile.

I hope you understand, can anything be done about this?

itsid
01-02-2007, 02:52 AM
Well easiest way is to create a new field

remember the fieldid (let's guess it is five)
and then add this:

<if condition="$post['field5'] !=''">
<a href="http://bitwine.com/advisors/$post['field5']"><img src="the_bitwine.gif"></a><br /></if>
or what ever the correct link should look like
(to prevent misuse, it's better to use PCRE (regular expressions) ;))

to postbit AND postbit_legacy somewhere below the avatar... like
after:
$vbphrase[posts]: $post[posts]

or to get closer to aim/skypeicons find this

<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
and make it


<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon] <if condition="$post['field5'] !=''"><a href="http://bitwine.com/advisors/$post['field5']"><img src="the_bitwine.gif"></a></if></div>


'sid

mindgrinder
01-02-2007, 08:28 AM
thanks :D