[Question] How to intergrate wysiwyg editors?

Status
Not open for further replies.

iL <

Active Member
112
2009
0
0
Hello wj,
I'm needing to intergrate a wysiwyg editor (tinymce) and kind of install it... like a content editor, so it saves the edited content, you know?
What's the best way of doing it?
 
7 comments
TinyMCE is just a front end portal, you need to code a backend which will "translate" the data entered through TinyMCE to function and be stored.

Example:
Code:
[type='verdana']whatever[/type] => <span style="font-family: verdana;">whatever</span>

If you don't know how to code a backend, then I suggest that you hire a coder, you basically need a BBCode parsing function or class that matches what TinyMCE does.
 
There's a mod for vBulletin that saved templates. I think that's what you're looking for? The mod is called vB Post Templates.
 
Status
Not open for further replies.
Back
Top