Can I Add More Smilies?

Is message board greying out your hair (at least what's left of it)? Let us help you here
Locked
Dean Saliba

Can I Add More Smilies?

Post by Dean Saliba »

I would like to add more smilies. Is this possible?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

It would include messing with the PHP code and I don't recommen that unless you are familiar with PHP. You could simply replace a few existing file images with your own (replace some original ones with new ones).
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
tungsten
Posts: 3
Joined: Thu May 18, 2006 11:49 am

Post by tungsten »

first off let me say that this is an AWESOME script !! So simple it's incredible !
Thank you !


How do I add more smilies ?
I uploaded a few more to the images folder
eg: band.gif
I went to smileys.htm & went into edit mode & added the following:
<a href="javascript:void(0)" onClick="Javascript:insertSmiley(':band:');return false;"><img src="images/band.gif" border="0" alt=""></a> &nbsp;

When I add an entry to the GBook & see the "new" smiley gif(in popup window) I imported but when I sview my post all I see is :band: - No image
Please tell me what I am missing

Thank you in advance



Edit: Im having an issue w/ the gbook not a message board
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

HI,

Both in MBoard and GBook use have function "processsmileys" in the main php file (mboard.php or gbook.php). You must add a line there to process your new smileys, for example:

Code: Select all

$text = str_replace(':band:','<img src="images/icon_band.gif" border="0" alt="">',$text);
Regards
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
tungsten
Posts: 3
Joined: Thu May 18, 2006 11:49 am

Post by tungsten »

Thank you I had figured it out about 1hr ago !
Thank you again
Locked