I’d like to limit what is available in the quickEdit toolbar to just the page content and template variables. I’ve tried changing the code in the plug in from this-
if(!isset($editable)){ $editable = ’pagetitle,longtitle,description,content,alias,introtext,menutitle,published,hidemenu,menuindex,searchable,cacheable’; }
to this-
if(!isset($editable)){ $editable = ’content’; }
but nothing happened at all. Is there a way to do this?
Thanks!
ModX 1.0.4
MySQL version 5.1.47-community-log
No tables over 1MB
Apache version 2.2.16
PHP version 5.2.14
Linux
Architecture x86_64
I have windows XP SP3, Firefox 3.6.
-
☆ A M B ☆
- 300 Posts
really quick and dirty, change that line you changed before ...
if(!isset($editable)){ $editable = ’content’; }
to
$editable = ’content’;