![]() |
|
#1
|
|||
|
|||
|
For some reason I no longer have a text editor for a BB Code module. I turned off a module to edit it, and there was no editor to do this. When I turned the module back on, it no longer appears on any of the pages where it once did.
Got any ideas? Am running vBa v. 3.0.1, and vB 3.7.1 Last edited by Ted Clore; 06-09-2008 at 11:42 AM. |
|
#2
|
||||
|
||||
|
Are you using the 'GTSmiliebox' hack? If so, you will need to edit your 'Replace Templates - editor_smiliebox & editor_toolbar_on' plugin and update the PHP code so it will not try to replace the editor templates with templates that are not set.
Code:
if ($vbulletin->templatecache['editor_toolbar_on_GTSMILIEBOX_3700'] AND $toolbartype AND ($vbulletin->options['smtotal'] > 0 OR $vbulletin->options['wysiwyg_smtotal'] > 0))
{
// replace templates
$vbulletin->templatecache['editor_smiliebox'] = $vbulletin->templatecache['editor_smiliebox_GTSMILIEBOX_3700'];
$vbulletin->templatecache['editor_toolbar_on'] = $vbulletin->templatecache['editor_toolbar_on_GTSMILIEBOX_3700'];
}
|
|
#3
|
|||
|
|||
|
Yes. Thank you for the direction, prompt reply and advice, Brian.
|
|
#4
|
|||
|
|||
|
This works also, in case you don't want to edit templates.
Turn off the GTSmiliebox hack, change your module, and then turn it back on. |
|
#5
|
|||
|
|||
|
Hi Brian, I am not quite understanding what to edit, can u write more detail about this ?
Like replace what code with what code ? Which files to edit exactly |
|
#6
|
||||
|
||||
|
Replace all of the code in the plugin mentioned above with the code in the box.
|
|
#7
|
|||
|
|||
|
tks a lot
joao barroca aka beduino |
|
#8
|
|||
|
|||
|
I am also having this problem. I have done the above and it worked. However, I recently installed the vBTweak Hack and it is doing it again ... Is there a fix ??
|
|
#9
|
||||
|
||||
|
Can't say I've ever heard of vBTweak... Have you tried checking the thread/site you downloaded it from to see if the author has posted a fix?
__________________
Frequently Asked Questions CMPS Users Manual For vBadvanced software assistance, please use the support forums. Unsolicted PMs, IMs, and email will not be responded to. If you have a non-software related question or problem with your account, please submit a support ticket. |
|
#10
|
|||
|
|||
|
Quote:
|
|
#11
|
|||
|
|||
|
Quote:
__________________
Seen vB5 beta? ![]() No more vbulletin for me, done , gone,finished .
|
|
#12
|
|||
|
|||
|
That certainly fixed my editor not showing up but it took some figuring out so I'll simplify it for others in the future.
If for some reason when you edit a module or create a new module the editor is not showing up for the actual Module Content it could be due to the GTSmilieBox. In my case it was and to fix it, here's what I did. Step 1 Login to AdminCP and scroll down to Plugins and Products and select the Plugin Manager. Step 2 Scroll down until you see the Product: GTSmiliebox - Move Smilies Below Editor and there are two options. Click: Replace Templates - editor_smiliebox & editor_toolbar_on Step 3 The code you will see is: Code:
if ($toolbartype AND ($vbulletin->options['smtotal'] > 0 OR $vbulletin->options['wysiwyg_smtotal'] > 0))
{
// replace templates
$vbulletin->templatecache['editor_smiliebox'] = $vbulletin->templatecache['editor_smiliebox_GTSMILIEBOX_3700'];
$vbulletin->templatecache['editor_toolbar_on'] = $vbulletin->templatecache['editor_toolbar_on_GTSMILIEBOX_3700'];
}
Code:
if ($vbulletin->templatecache['editor_toolbar_on_GTSMILIEBOX_3700'] AND $toolbartype AND ($vbulletin->options['smtotal'] > 0 OR $vbulletin->options['wysiwyg_smtotal'] > 0))
{
// replace templates
$vbulletin->templatecache['editor_smiliebox'] = $vbulletin->templatecache['editor_smiliebox_GTSMILIEBOX_3700'];
$vbulletin->templatecache['editor_toolbar_on'] = $vbulletin->templatecache['editor_toolbar_on_GTSMILIEBOX_3700'];
}
|
|
#13
|
|||
|
|||
|
Thanks. This was exactly what was wrong with mine, and the fix was extremely easy to do.
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Editor Images... | persian | Troubleshooting & Problems | 4 | 02-04-2011 12:31 PM |
| Module editor in RC2 | Bigsbydapicka | Troubleshooting & Problems | 6 | 01-08-2008 03:03 PM |
| Editor Size | dilbert05 | Troubleshooting & Problems | 5 | 12-22-2007 03:54 PM |
| ANOTHER problem with the editor... | osousous | Troubleshooting & Problems | 3 | 12-01-2007 01:56 PM |
| WYSIWYG Editor | reefland | Chit Chat | 3 | 03-30-2005 01:59 PM |