One: Perhaps the theme you are using is conflicting with the plugin css and will need to be modified? * cannot tell without one viewing source on an open board and or also getting a view under the hood.
Two: The plugin was created for and works on the default theme and most themes as long as the respective forumbit templates have standard code to find and replace,. Three: now, if you are using a theme with font awesome already installed...., one, it may or may not work depending on the code the theme has and whether or not the plugin can insert replacements depending on the plugin finding the existing matching template call to overwrite. Four: now if it does work, one very important note is to still find any font-awesome header include file in a font awesome enabled theme and comment it out for example in the header include file as having two font-awesome libraries may cause issues and the plugin installs its own font-awesome 5 library
Five: You mentioned a strict mode issue. Sorry, I really do not have the free time to focus on this nor a server with strict mode enabled at the moment to recreate this reported error, but, have you simply tried opening up the plugin file "myfontawesomeicons.php" in a text editor and finding:
function myfontawesomeicons_install()
{
global $db;
$db->add_column('forums', 'myfontawesomeicons_icon', 'TEXT NOT NULL');
}
And changing to for example:
function myfontawesomeicons_install()
{
global $db;
$db->add_column('forums', 'myfontawesomeicons_icon', 'varchar(25) DEFAULT "fas fa-comments"');
}
Does this make the aforementioned error on strict mode go away? Primarily all this does is set a default icon on install so in theory nullifying the error as there will be a default icon defined on install thus not causing a missing default definition error? Please let me know and I will consider this issue then resolved. Thanks.
Or if you do not want to do the edit yourself you can simply download Version 1.2 Build #8
https://community.mybb.com/mods.php?acti...9&bid=3692 that has only this aforementioned change in it.