Do you have some feature in mind that you'd love to see in Couch? Let us know.
14 posts Page 2 of 2
Not to worry, figured it out

edited the couch/addons/inline/theme/scripts.php
Code: Select all
        if( inline ){
            editor.on( 'configLoaded', function(){

                editor.config.extraPlugins = 'inlinesave';
                set_toolbar();
               
                // added following three lines
                editor.config.extraPlugins = 'lineutils';
                editor.config.extraPlugins = 'widget';
                editor.config.extraPlugins = 'image2';


and that seems to do the trick. will report back if any problems.
cheers
Spoke to soon.
This removes the save inline icon from the toolbar.
I've tried swapping order, adding additional set_toolbar() calls, but to no avail.
Anyone have any ideas?
cheers
Should be one line, comma separated without spaces -
Code: Select all
editor.config.extraPlugins = 'linkbutton,timestamp';
Join COUCH:TALK channel here https://t.me/couchcms_chat
Ryazania — a framework to boost productivity with Add-ons viewtopic.php?f=2&t=13475
Support my efforts to help the community https://boosty.to/trendo/donate
@trendoman - thank you once again. bit of an rtfm :oops:
14 posts Page 2 of 2