Website and Online Development

The Events Calendar plugin was updated so the Zoom link will include the password when clicking the “Join Meeting” button. Previously, you had to be logged in to get the password.

I added the following to the functions.php by going to Appearance > Theme File Editor in the WordPress admin panel. The functions.php file allows developers to add their own custom code to the site.

/**
 * Include password in Zoom links.
 */
add_filter( 'tribe_events_virtual_meetings_zoom_meeting_include_password', '__return_true' );

Instructions were found here

Edit: 2025-05-08T07:00:00Z Fixed the code. Previous code did the exact opposite (hide the password).