> ## 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.

# Can we automatically enable all Conferences to be recorded?

> Canvas administrators can use custom theme JavaScript to force the record option on for every new Conference and prevent instructors from disabling it.

When you create a new Conference, the record option is checked by default.

<Frame>
  <img src="https://mintcdn.com/testcompany-0e915c76/FQaQkOxGIJ7-FRs9/images/Screenshot2026-03-31at7.53.09AM.png?fit=max&auto=format&n=FQaQkOxGIJ7-FRs9&q=85&s=bd0ef8a18f48a54b5540296b286e4125" alt="Record option checked by default on a new Conference" width="1976" height="1484" data-path="images/Screenshot2026-03-31at7.53.09AM.png" />
</Frame>

At some schools, however, this setting is not checked by default.

If you are a Canvas administrator, you can force the record option on for every instructor at your institution. Canvas lets you apply your own theme with custom CSS and JavaScript, and a small JavaScript snippet sets **Enable recording for this conference** to true and prevents instructors from disabling it.

The following video walks through the setup: [https://youtu.be/7oITHgBU8jg](https://youtu.be/7oITHgBU8jg).

To apply the change, add the JavaScript snippet below to your theme, or append it to any existing JavaScript in your theme.

```text 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; }
 }
);
```

After you upload the snippet, the record option is checked and disabled whenever an instructor creates a new Conference.
