Hi RichP714,
Please download the source code project of YAF1.9.5.5 and create a file name "CuteEditor.cs" under "YAF1.9.5.5source\YetAnotherForum.NET\Classes\Editors\CuteEditor.cs" and than re-build the project to try again. It works fine for me.
There are some feature of YAF1.9.5.5 install version cause CuteEditor does not show in the editor list. So I suggest you use the source code project.
The code of "CuteEditor.cs"
- namespace YAF.Editors
- {
- using System;
- using System.Reflection;
- using System.Web.UI.WebControls;
- using YAF.Classes;
- using YAF.Core;
- using YAF.Types;
-
- public class Cute_editor : RichClassEditor
- {
- CuteEditor.Editor _editor = new CuteEditor.Editor();
-
- public Cute_editor()
- {
-
- }
- protected override void OnInit([NotNull] EventArgs e)
- {
- _editor.ID = "CE";
-
-
- _editor.Width = Unit.Pixel(780);
- _editor.Height = Unit.Pixel(320);
- this.AddEditorControl(this._editor);
- base.OnInit(e);
- }
-
- public override bool Active
- {
- get
- {
- return true;
- }
- }
- public override string ModuleId
- {
- get
- {
- return "9";
- }
- }
- public override string Description
- {
- get
- {
- return "CuteEditor Editor(HTML)";
- }
- }
- public override string Text
- {
- get
- {
- return _editor.Text;
- }
- set
- {
- _editor.Text = value;
- }
- }
-
-
- }
- }
regards,
Ken