• Resolved nikolajlarsen

    (@nikolajlarsen)


    Thank you for this absolutely awesome plugin!

    I’m only having one slight challenge with it. I’ve embedded my meeting as an iFrame with the shortcode: [zoom_join_via_browser meeting_id=”YOUR_MEETING_ID” login_required=”no” help=”yes” title=”Test” height=”500px” disable_countdown=”yes” passcode=”1232132121″ webinar=”no”]

    But in the iFrame it shows the browser info, name and version, which is completely irrelevant for the user (example: https://ibb.co/xCyYWHB) I would like to hide all of this, so the user just has to click “Join”, but I can’t figure out how to.

    I can see that the question had been posted earlier on the forum, and that the user was told that he could hide it via CSS, but I am not sure exactly how.

    Hoping that someone can help me out ??

    Thanks a lot, again!

    Best regards,
    Nikolaj

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi there, please try adding this style code in Dashboard > Appearance > Customize > Advanced CSS

    div#vczapi-zoom-browser-meeting--container {
        width: 400px;
    }
    .vczapi-zoom-browser-meeting--info__browser {
        display: none;
    }
    Thread Starter nikolajlarsen

    (@nikolajlarsen)

    Hey ugene, thanks a lot for the input! Sadly the code doesn’t do anything in the iFrame – it all looks the same ??

    The exact code I’m using is:
    [zoom_join_via_browser meeting_id=”meeting-id-here” login_required=”no” help=”no” title=”” height=”600px” disable_countdown=”yes” passcode=”code-here” webinar=”no”]

    Don’t know if that helps ??

    Hi @nikolajlarsen, I am sorry. You are right, it will not work in iframe.
    You need to hook on code to add those styles.

    Here, please add this code in your functions.php file (under active theme).

    add_action('vczoom_jbh_before_content','cm_vczoom_hide_browser_meeting_info');
    function cm_vczoom_hide_browser_meeting_info(){
    	?>
        <style>
            #vczapi-zoom-browser-meeting--container{
                width: 400px;
            }
            .vczapi-zoom-browser-meeting--info{
                display: none;
            }
        </style>
    	<?php
    }

    Hope this helps. ??

    • This reply was modified 3 years, 9 months ago by ugene.
    • This reply was modified 3 years, 9 months ago by ugene.
    Thread Starter nikolajlarsen

    (@nikolajlarsen)

    FANTASTIC – IT WORKS! You’re amazing, @ugene – thank you SO much!

    I hope you have a great day. Thanks a lot for taking time out of your day for helping me ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide Browser Info, Name and Version for front-end meeting’ is closed to new replies.