Page 1 of 1

bbcode buttons for commentform

Posted: Mon Oct 09, 2006 3:19 pm
by Matthias2
Hi there,

I´m searchin a plugin that shows bbcode buttons (or text instead of buttons) above the commentform (as we see it here in s9y forum above the textform). Is there such an plugin? I could not find anything but I think it would be a good help für all visitors who want to leave a comment in someones´s blog an want to format there text.

thanks for help.

I tried this

Posted: Tue Oct 10, 2006 3:39 pm
by Matthias2
I use a standard JS-File with functions like this

Code: Select all

function insertHTMLCode(tag)
	{
		switch(tag)
		{
			case "b":
				value = prompt("fett gedruckter Text:", "");
				code = (value != null ) ? "[b]"+value+"[/b] " : "";
			break;

			case "code":
				code = "[code]
";
break;
}
...
[/code]

And I integrated according Links into commentform.tpl above comment field.

Code: Select all

<a accesskey="b" href="javascript:insertHTMLCode('b')" title="fett gedruckter Text (Alt+B)"><strong>fett</strong></a>
What have I to do, that these BBCodes are inserted into commentfield? I tried several things but nothing took effect?

Am I on the wrong track?

Re: I tried this

Posted: Tue Oct 10, 2006 5:14 pm
by garvinhicking
Hi!

Did you try to insert that into your commentform.tpl template file?

Regards,
Garvin