Forums
Home / Plugin: Video Conferencing with Zoom / editing the format
(@2022dmi)
2 years, 1 month ago
How can I edit the form of the join buttons and text
(@j_3rk)
You can change the button style using css. You can change the button text using below filters. Add these to your active theme’s functions.php file
add_filter('vczapi_join_meeting_via_app_text', function() { return 'Join via App'; }); add_filter('vczapi_join_meeting_via_browser_text', function() { return "Join via Browser"; });