The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
vbulletin editor question urgent please
Hi,
I have a question: how to add the quickreply editor in my coustomed page? thanks bye. |
#2
|
||||
|
||||
You should go search through the articles forums. I'm pretty sure there is an article about this.
|
#3
|
|||
|
|||
I tried to find it and I do not found
I found the thread for the newthread but, not for the quickreply editor |
#4
|
||||
|
||||
search "edit*" "articles" "titles only" and you get this - Adding Editor to your Mods
|
#5
|
|||
|
|||
I did it but it is the newthread editor and I like the quickreply editor thanks for your reponse
|
#6
|
||||
|
||||
Try looking up construct_edit_toolbar in the vB API (link under Quick Links) and you can probably get what you want by changing that line in the article.
|
#7
|
|||
|
|||
what article ?
and how I will do it ? thanks for your reponse |
#8
|
||||
|
||||
Yeah, I've found the articles involving the editor aren't very useful...
Using the code from the article, you only need to make one change in the plugin code. Code:
$toolbartype = $setting['allow_bbcode'] ? is_wysiwyg_compatible(-1, $editor_type) : 0; $show['wysiwyg_compatible'] = (is_wysiwyg_compatible(2, $editor_type) == 2); Code:
$toolbartype = $setting['allow_bbcode'] ? is_wysiwyg_compatible(-1, 'qr') : 0; $show['wysiwyg_compatible'] = (is_wysiwyg_compatible(2, 'qr') == 2); |
#9
|
|||
|
|||
Thanks man and Lynne I will try it
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|