> ## Documentation Index
> Fetch the complete documentation index at: https://bigbluebutton.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Enabling recording for all Canvas Conferences

> Canvas administrators can add a JavaScript snippet to their theme to force recording on for every Conference and prevent instructors from disabling it.

If your Canvas theme allows custom CSS and JavaScript, you can force recording on for every Conference created at your institution and prevent instructors from disabling it.

To set up forced recording, add the JavaScript snippet below to your Canvas theme. The snippet sets **Enable recording for this conference** to true and disables the checkbox so instructors cannot turn it off.

The following video demonstrates the result:

[https://youtu.be/7oITHgBU8jg](https://youtu.be/7oITHgBU8jg)

Add this snippet to your theme, or append it to any existing JavaScript already in your theme:

```javascript theme={null}
/* Force conferences to be recorded */
$("button.new-conference-btn").live("click",
 function() {
  rec = $("#web_conference_user_settings_record")[0];
  if (rec) { rec.checked = true; rec.disabled = true; }
 }
);
```

<Note>
  This change applies to every Conference created in Canvas. Instructors will see the **Enable recording for this conference** checkbox already selected and greyed out.
</Note>
