SUGGEST_TO

Highlight certain groups in the Suggest panel with prominent buttons (3.0+)

Accepted values: array of data types and group id/label pairs

Context: Global (client/global.config.php)

In LiveWhale 3.0+, you can configure SUGGEST_TO groups if you want to highlight certain groups that many editors might be suggesting content to (for example, your Homepage, Featured Events, or other curated groups).

Suggest panel with buttons for groups

Add the following to your client config file to configure a single group:

$_LW->CONFIG['SUGGEST_TO']=[ // call out certain groups in the Suggest panel
        'events' => [
                3 => 'Homepage' // suggest to group id 4
        ]
];

Or, you can configure a few buttons for different groups:

$_LW->CONFIG['SUGGEST_TO']=[ // call out certain groups in the Suggest panel
        'events' => [
                12 => 'Homepage',
                34 => 'Main Calendar',
                56 => 'Email Newsletter'
        ]
];