Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Blog Module /

Discuss the Blog Module.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Blog Module Front-End WYSIWYG Image?


Go to End


4 Posts   3125 Views

Avatar
Media Contour

Community Member, 33 Posts

12 January 2011 at 1:44pm

I don't see a button to add an image in the WYSIWYG editor that appears on the form after clicking on the Blog Management widget.

Is it even possible to add it?

Avatar
boosis

Community Member, 8 Posts

31 May 2011 at 11:47pm

Did you find a solution for this?

Avatar
danzzz

Community Member, 175 Posts

27 January 2012 at 11:10pm

Also interessted in a solution.

Avatar
allenmccabe

Community Member, 5 Posts

4 July 2013 at 6:21am

The following JavaScript is necessary to get the WISYWIG working on the front-end anyway; notice "image" at the end of the "theme_advanced_buttons1" value:

if (typeof tinyMCE != 'undefined' && typeof tinyMCE.init == 'function') {
tinyMCE.init({
document_base_url: "/",
theme : "advanced",
mode: "textareas",
theme_advanced_toolbar_location : "top",
theme_advanced_buttons1 : "formatselect,|,bold,italic,underline,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,outdent,indent,separator,undo,redo|image",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
plugins : "inlinepopups",
height:"600px",
width:"610px"
});
}