PDA

View Full Version : posbit icons


sphinx
08-19-2002, 06:23 PM
can someone please tell me in easy lay mans terms how I would go about changing the default postbit icons into html links,if this can be done,any help appreciated

roxics
08-19-2002, 06:53 PM
Do you want them to just be text links instead of buttons. Or do you want the existing buttons to link outside of the site like any old HTML link on a regular website?

sphinx
08-19-2002, 06:56 PM
I would just like them to be text links if this possible,thank you

roxics
08-19-2002, 07:04 PM
Okay expand your postbit templates

Below you will see the postbits for each button:

postbit_profile [change original]
postbit_search [change original]
postbit_sendpm [change original]
postbit_signature [change original]
postbit_useremail [change original]
etc

Go to change original for each one.

your are going to end up with something like this for each one:

<a href="$post[homepage]" target="_blank">Homepage</a>

Here would be an example of the postbit_profile:

<a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$post[userid]" target="_blank">Profile</a>

All you're doing is taking out the image tags and replacing them with text.

I hope that's what you're looking for.