• Resolved Talha Imam

    (@talhaimam)


    Hello,

    We’re using this plugin to host online meetings which can be joined via browser without logging into zoom.

    We were wondering if we can change the ‘zoom-meetings’ slug to something else, for e.g. to ‘online-meetings’. Is this possible or the whole plugin is designed around this slug? If possible, then how?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor digamberpradhan

    (@digamberpradhan)

    Hi @talhaimam ,

    You can change the slud of the meetings. To do this you will have to add the following code to your child themes functions.php file.

    function vczapi_zoom_meeting_slug_change(){
    	return 'online-meetings';
    }
    
    add_filter('vczapi_cpt_slug','vczapi_zoom_meeting_slug_change');

    After doing so – go to Admin > Settings > Permalinks and click save.
    This will flush the permalinks and the new slug will take effect.

    Thread Starter Talha Imam

    (@talhaimam)

    @digamberpradhan Thanks, worked like a charm.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is it possible to change the zoom-meetings slug to something else?’ is closed to new replies.