Hi Pat,
Caldera Forms uses ‘manage_options’ by default.
It’s possible to replace ‘manage_options’ with any other user capability using custom filter: ‘caldera_forms_manage_cap’:
caldera-forms/classes/core.php, line #4865:
/**
* Returns the capability to manage Caldera Forms
*
* By default, returns "manage_options" can be filtered with "caldera_forms_manage_cap"
*
* @since 1.3.1
*
* @param string $context Optional. Context for checking capabilities.
*
* @return mixed|void
*/
public static function get_manage_cap($context = 'admin', $form = false)
{
if (is_string($form)) {
$form = Caldera_Forms_Forms::get_form($form);
}
/**
* Change capability for managing Caldera Forms
*
* @since 1.3.1
*
* @param string $cap A capability. By default "manage_options"
* @param string $context Context to check in.
* @param array|null $form Form config if it was passed.
*/
return apply_filters('caldera_forms_manage_cap', 'manage_options', $context, $form);
}