• Resolved sparksouldev

    (@sparksouldev)


    I am still in Beta, developing the site.
    The site I am building will have teachers and students logged in.
    I am wondering if there is a shortcode or some way to ONLY display the meetings that I created when I was logged in, or that I accepted, and not all the meetings made by everyone in the site.
    It seems the shortcode I have displayed ALL the MEETINGS to EVERYONE.
    Or is this something I need the Pro version for?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Deepen

    (@j_3rk)

    @sparksouldev

    You can either use a membership plugin to hide this page to only members or logged in users or override plugin template file located in : wp-content/plugins/video-conferencing-with-zoom/templates/shortcode/list-meetings-host.php

    Copy wp-content/plugins/video-conferencing-with-zoom/templates/shortcode/list-meetings-host.php

    to yourtheme/video-conferencing-zoom/shortcode/list-meetings-host.php and wrap all the code with if( is_user_logged_in() ) {} code.

    For example:

    if( is_user_logged_in) ) {
    <table id="vczapi-show-meetings-list-table" class="vczapi-user-meeting-list">
        <thead>
        <tr>
            <th><?php _e( 'Topic',
    //Your code
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Shortcode for ONLY listing meetings that I signed up for’ is closed to new replies.