The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
|
Setting H1, H2, etc - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16) +--- Thread: Setting H1, H2, etc (/showthread.php?tid=797) |
Setting H1, H2, etc - Cletus Van Damme - 2010-06-13 Is there a way that I'm not aware of to mark text as H1, H2, etc from the editor itself without switching to HTML? I'm fine doing that myself, of course, but clients prefer using the WYSIWYG interface, and get confused about HTML, closing tags, and that sort of thing. Setting H1, H2, etc - JWH_Matthew - 2010-06-13 Yes, change line 31 of gsconfig.php within your website root from Code: #define('GSEDITORTOOL', 'advanced'); Code: define('GSEDITORTOOL', 'advanced'); This will add several more options to your text editor, there is a way to create a custom toolbar, but I am not going to go find the code needed to do so unless you really would like me to, then I would be happy to Setting H1, H2, etc - Cletus Van Damme - 2010-06-13 Excellent, that's very helpful. Thank you. Setting H1, H2, etc - JWH_Matthew - 2010-06-13 If you would like to customize this, you can edit lines 264 - 279 on admin/edit.php Setting H1, H2, etc - badcat - 2010-06-15 OWS_Matthew Wrote:If you would like to customize this, you can edit lines 264 - 279 on admin/edit.phpKeep in mind, these changes will most likely get overwritten when you upgrade GetSimple. Setting H1, H2, etc - SamWM - 2010-06-15 I find 'advanced' is too much, so just define the buttons with: Code: define('GSEDITORTOOL', "['Format', 'Bold', 'NumberedList', 'BulletedList', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock', 'Link', 'Unlink', 'Image', 'RemoveFormat', 'Source']"); Setting H1, H2, etc - jyrialeksi - 2010-09-17 For some reason this is not working for me. Code: define('GSEDITORTOOL', "['Format', 'Bold', 'NumberedList', 'BulletedList', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock', 'Link', 'Unlink', 'Image', 'RemoveFormat', 'Source']"); It just gives me the default toolbar when I try to modify it. My need is to give user just Format, Bold, Italic and photo so they dont destroy the design. Setting H1, H2, etc - spring - 2010-09-24 OWS_Matthew Wrote:Yes, change line 31 of gsconfig.php within your website root from Line 40 on version 2.03. I wonder why this is not enabled by default? Anyway it's working well on my site, thanks! Setting H1, H2, etc - JWH_Matthew - 2010-09-24 Our goal is to be as simple as possible, so we keep it set to simple toolbar but we provide the options to make it more advanced. |