I am using tiny mce HtmlField() in my django models. Every thing works file but the bottom branding in the field annoys me. Is there any way to remove branding in django template.
Asked
Active
Viewed 368 times
-1

SANJEEV K M
- 13
- 3
1 Answers
2
This supposed to work.
tinymce.init({
selector: '#tinymce-div',
// Disable branding message, remove "Powered by TinyMCE"
branding: false
});
note: If you are developing a product using there open source license you should consider keeping the text. That's a courtesy we all should follow.

mursalin
- 1,151
- 1
- 7
- 18
-
Ok, but where am I supposed to add this piece of code. Adding It inside the script tag in my template doesn't work – SANJEEV K M Jun 27 '20 at 14:53
-
@SANJEEVKM inside your script field where you are initializing tinymce – mursalin Jun 27 '20 at 14:56
-
Adding It inside the script tag in my template doesn't work – SANJEEV K M Jun 27 '20 at 15:03
-
please update your question with your script where you initialized the tinymce. – mursalin Jun 27 '20 at 15:04