How to customise WYSIWYG bar in placeholder content?
Is it possible to restrict some buttons/options in WYSIWYG editor?
for example:
Remove html button, or remove bold button.
Answers
-
You can add a file
src/Pyz/Zed/Gui/assets/Zed/js/modules/init.js
with the following content:
var editorInit = function() {
$('.html-editor').each(function() {
var $textarea = $(this);
var textareaConfigName = $textarea.data('editor-config');
var config = editorConfig.getGlobalConfig(textareaConfigName);
if (!config) {
config = editorConfig.getConfig();
}
//disable/enable features to your need. See https://summernote.org/deep-dive/#initialization-options for all options
$textarea.summernote(config);
});
};
$(document).ready(function() {
// editor
editorInit();
});5 -
Thank you.
It will help a lot.0
Categories
- All Categories
- 42 Getting Started & Guidelines
- 7 Getting Started in the Community
- 8 Additional Resources
- 7 Community Ideas and Feedback
- 75 Spryker News
- 919 Developer Corner
- 779 Spryker Development
- 89 Spryker Dev Environment
- 362 Spryker Releases
- 3 Oryx frontend framework
- 34 Propel ORM
- 68 Community Projects
- 3 Community Ideation Board
- 30 Hackathon
- 3 PHP Bridge
- 6 Gacela Project
- 25 Job Opportunities
- 3.2K 📜 Slack Archives
- 116 Academy
- 5 Business Users
- 370 Docker
- 551 Slack General
- 2K Help
- 75 Knowledge Sharing
- 6 Random Stuff
- 4 Code Testing
- 32 Product & Business Questions
- 69 Spryker Safari Questions
- 50 Random