How to Hide Guest Access Permissions from Adobe Connect Meetings and Virtual Classrooms
Issue: Administrators may want to allow hosts the ability to only invite registered Adobe Connect users to join Meetings and Virtual Classroom sessions; they may wish to hide the option to allow guest access.
Environment:
- Adobe Connect 12.5.1 and later On-premise
- Adobe Connect 12.5.1 and later ACMS and Managed USP Accounts
Note: This article contains images. You may need to refresh the WordPress page in your browser to view them.
MEETINGS (Highlighted section seen below is required to be hidden)
Steps to follow are:-
- From the Adobe Connect server navigate to the path: ~\Connect\12.x\appserv\apps\lcui\meeting
- create a copy of the sco_edit.xsl file
- In the sco_edit.xsl file search for the following tags:
a) “page-header” – place the style block above the script blocks<style>
#enter-room-accepted-guests-option,
#enter-room-url-option
{ display: none; }
</style>
for reference see the screen shot:
b) “page-init” – place the functionfunction hideSettings()
{const checkboxIds = ['enter-room-url', 'enter-room-accepted-guests'];
checkboxIds.forEach(id => {const checkbox = document.getElementById(id);
if (checkbox && checkbox.checked)
{ checkbox.click(); }
});
}setTimeout(hideSettings, 1500);
for reference see the screen shot: - Save this sco_edit.xsl file
- Restart of Adobe Connect Service is required for the changes applied.
Result: When hosts now tries to create a new Meeting room they only get three options for access permissions to choose from
VIRTUAL CLASSROOMS (Highlighted section seen below is required to be hidden)
Steps to follow are:
- From the Adobe Connect server, navigate to the path: ~\Connect\12.x\appserv\apps\lcui\virtual_classroom
- create a copy of the sco_edit file
- In the sco_edit.xsl file search for the following tags:
a) “page-header” – place the style block above the script blocks<style>
#enter-vc-accepted-guests-option,
#enter-vc-room-url-option
{ display: none; }
</style>
for reference see the screen shot
b) “page-init” – place the function
function hideSettings() {
const checkboxIds = [‘enter-vc-room-url’,’enter-vc-accepted-guests’];
checkboxIds.forEach(id => {
const checkbox = document.getElementById(id);
if (checkbox && checkbox.checked)
{ checkbox.click(); }
});
} setTimeout(hideSettings, 1500);
for reference see the screen shot: - Save this sco_edit.xsl file
- Restart of Adobe Connect Service is required for the changes applied.
Result: When trainers now try to create a new Meeting or Virtual Classroom they only get three access permissions options to choose among.