MyBB Community Forums

Full Version: Theme issue editor_themes not available- MyBB 1.8.24
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Recently upgraded to MyBB 1.8.24 from MyBB 1.6.X version. On new thread message of our site I am getting error:

jscripts/sceditor/editor_themes/modern.css net::ERR_ABORTED 404 (Not Found)

After looking at the folder structure, I realized  editor_themes directory does not exist and is replaced with "themes". Can someone please help me how can the reference to the above change to reflect the new directory?

Thanks in advance.
Make sure all folders related to MyBB 1.8 exists, you can use DVZ Integrity tools plugin to know what all changes are there or not
https://community.mybb.com/mods.php?action=view&pid=980

Regards
WallBB
(2021-05-29, 05:52 AM)WallBB Wrote: [ -> ]Make sure all folders related to MyBB 1.8 exists, you can use DVZ Integrity tools plugin to know what all changes are there or not
https://community.mybb.com/mods.php?action=view&pid=980

Regards
WallBB
All the folders seems to be accurate. Thanks for the responding

This was resolved by making relevant changes in codebuttons template. In addition to that following changes were made:

1) Add following lines to codebuttons template (this template is found under ungrouped templates):
plugins: "undo",
format: "bbcode",
icons: "monocons",

2) Remove following from the below templates to fix avatar error

announcement,editpost,modcp_announcements_edit,modcp_announcements_new,newreply,newthread, private_read, private_send, showthread


<script type="text/javascript">
$(".author_avatar img").error(function () {
$(this).unbind("error").closest('.author_avatar').remove();
});
</script>