
Our panelists, chairs, and presenters are getting confused by the Co-Host button and joining the session as attendees by mistake, which means they are put in the waiting room and can't prepare. We would like to change the text of the "Join Meeting as Co-Host" button. We tried this with a javascript snippet, but it also changed the "Meeting Opens at Time" button. Is there already a solution for this?
You could use a JS solution to only rewrite the button when its text is "Join meeting as co-host", thus targeting that specific situation.
This solution assumes waitUntilExists is installed into your theme:
$('.virtualConferenceButtons').waitUntilExists( function() {
$('.btn_virtual_conference').each( function() {
let theText = $(this).text();
if (theText === 'Join Meeting as Co-Host') {
$(this).text('Whatever/text');
}
})
});