Bug: Problem with text editor not showing - Printable Version +- D&D Forums - MyBB Plugins & Themes (https://developement.design/forum) +-- Forum: MyBB Ressources (https://developement.design/forum/forumdisplay.php?fid=5) +--- Forum: Free MyBB Themes (https://developement.design/forum/forumdisplay.php?fid=7) +---- Forum: Support (https://developement.design/forum/forumdisplay.php?fid=12) +---- Thread: Bug: Problem with text editor not showing (/showthread.php?tid=533) |
Bug: Problem with text editor not showing - theliadir - 05-31-2018 Hello I had an issue with the emerald template when I used it with the french language pack. Thank you for the theme though, it's amazing. For all users I switched to french, the text editor was gone. (with the emerald theme activated) I wasn't able to check or uncheck: Show the MyCode formatting options on the posting pages. In the UserCP configuration. I had to update the code here: templates -> user Control Panel Templates -> usercp_options template there I had to replace: Code: {$showeditorplaceholder} with: Code: <tr> <td valign="top" width="1"><input type="checkbox" class="checkbox" name="showcodebuttons" id="showcodebuttons" value="1" {$showcodebuttonscheck} /></td> <td><span class="smalltext"><label for="showcodebuttons">{$lang->show_codebuttons}</label></span></td> </tr> After in the UserCP I was able the see and check the option: how the MyCode formatting options on the posting pages. Then the Texteditor was working just fine. Maybe you have to update your code? Cheers Daniel RE: Bug: Problem with text editor not showing - AmazOuz - 06-10-2018 Hello, This is very weird, the theme does not depend on the language settings. It seems that {$showeditorplaceholder} is generated normaly by MyBB when it's in english but empty in french, so it's a bug in MyBB itself. |