I created a typo3 extension.I have a flex form for configuring my pluggin.The form contains some default typo3 configuration like pluggin mode,storage folder and recursive.I want to hide these fields.How can it is possible?
Try the following in your ext_tables.php file
$TCA['tt_content']['types']['list']['subtypes_excludelist'][$pluginSignature] = 'recursive,select_key,pages';
Related
How do I add a custom colour to ckeditor in hippo cms?
I've gone through tutorials and documentation of both, Hippo CMS and CKEditor but saw that config.js file is missing in the present project.
After going through the documentation all I was able to find was:
-> ckeditor-optimized.jar file in which I'm unable to add plugins
-> plugin folder which does not contain colorbutton, even though it shows in the ckbuilder that it is present.
"color button" is packaged with the Bloomreach CKeditor instance. It is disabled by default. According to [1] you can enable it by adding
{
extraPlugins: 'colorbutton'
}
to the ckeditor configuration [2]
[1] https://documentation.bloomreach.com/library/concepts/document-types/html-fields/ckeditor-plugins.html
[2] https://documentation.bloomreach.com/library/concepts/document-types/html-fields/ckeditor-configuration-properties.html
Extension configuration is missing for all extensions that should have one. Am I missing a configuration that was introduced in version 9?
1
The Extension Configuration, which was formerly found in the Extension Manager, has moved with the release of TYPO3 v9.
You can change the configuration of extensions now in the new TYPO3 Backend module ADMIN TOOLS > Settings. It's the first box in the list, the title is still the same.
I've installing the newest ckeditor. but I've difficulties in configure wiris plugin on them.
I've try the steps listed on wiris website. but I've difficulties in editing configuration.ini.
Please help me editing configuration.ini and give example configuration.ini that works.
I'll so appreciated if anyone can give the download link containing ckeditor folder + wiris plugin already installed.
WIRIS plugin works without any configuration.ini file (from 3.50.x version onwards) using its default values. You only have to include a configuration.ini file if you need like to customize the configuration. There is a configuration.ini.dist in your ckeditor_wiris directory you can use as an example. You need to remove the leading # to uncomment variables. You can find more details at http://www.wiris.com/plugins/docs/resources/configuration-table
You can also download this working demo: http://www.wiris.com/plugins/demo/ckeditor/php/
I have written a plugin for CKeditor according to this tutorial: Plugin Tutorial but I can't get it shown on the ckeditor's toolbar of my Joomla 1.5 installation. I have copied it in the plugins folder, registered it in the config.js as an extra plugin, even tried the Advanced Configuration in the backend settings by setting this: CKEDITOR.config.extraPlugins = 'myplugin'; or this config.extraPlugins = 'myplugin' but nothing happens, no button whatsoever. Can someone list the "installation procedure" of the plugin on a joomla 1.5 system? Thanks.
You also have to have an entry in the jos_plugins table. Unless I'm building an installation package for it, I just copy a similar record and make the changes to match my plugin - be sure to get the value in the "folder" correct.
i saw in the changelog of MCFileManager the following feature:
Version 3.0.6 (2008-02-21)
Added support for loading the TinyMCE plugin from an external location.
But how can i do this?
When i load the editor_plugin.js file and i enable the plugin in the tinyMCE settings, then i get only errors because the paths are not correct.
In the tinyMCE documentation i've found this:
TinyMCE also supports the ability to have plugins added from a external resource. These >plugins need to be self registering and loaded after the tinyMCE.init call. You should >also prefix these plugins with a "-" character, so that TinyMCE doesn't try to load it >from the TinyMCE plugins directory.
but when i add the plugin using "-insertimage" nothing is loaded.
Thanks for your help,
dattn