Prevent clients from editing templates

Is there a way to prevent clients from editing Bricks templates? I’ve been able to remove the “Bricks” menu item in the WP admin, but there is still the matter of access to edit the header & footer from the Bricks editor when editing a page in Bricks. Thanks.

Did you find a way of resolving this? I undertsand your problem for clients with access

function check_user_access() {
    if (current_user_can('editor') && strpos($_SERVER['REQUEST_URI'], 'template') !== false) {
        wp_die('stop edit');
        exit;
    }
}
add_action('template_redirect', 'check_user_access');