Last active
August 30, 2022 12:21
-
-
Save digamber89/a813b452d123aaa8d3f4ade19474dbed to your computer and use it in GitHub Desktop.
Change Join via App / Broswer text - Zoom WooCommerce Meetings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//change join via app text | |
add_filter('vczapi_join_meeting_via_app_text','change_join_via_app_text'); | |
function change_join_via_app_text($join_text){ | |
return 'Join Meeting'; | |
} | |
add_filter('vczapi_join_meeting_via_browser_text','change_join_via_broswer_text'); | |
function change_join_via_broswer_text($join_meeting_text){ | |
return 'Join via Browser'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment