Maulik Savaliya
Maulik Savaliya

Reputation: 1260

ckeditor display <p>Text</p> instead of displaying HTML

Ck-editor is not displaying my content as HTML instead it displaying with HTML tags.

I have initialize ck-editor by below code:

$(document).ready(function() {
   CKEDITOR.replace('long_description');
});

enter image description here

Upvotes: 3

Views: 1207

Answers (1)

Jigar Pancholi
Jigar Pancholi

Reputation: 1239

Please check form_helper file. May be html_escape will be problematic. Please try by removing this html_escape and let me know if it works.

Upvotes: 3

Related Questions