Vidyard is often used for sharing Marketing content as well as one to one videos that get added into Personal Folders.
If you have the ability to customize your Branded Sharing Page, showing a Description is managed by a toggle under Video Details.
In some cases, you will want to have a sharing page that adds the description of the content underneath the video for Marketing purposes, but not show the 'Created by Vidyard' message for other recordings.
Solution
You can add the following code into a Javascript section on the Sharing Page. This can be either in the head or body box.
This will hide the Description container when it detects the Vidyard messaging.
<script type="application/javascript">
$(document).ready(function() {$('div#sharing-description:has(p:contains("created with Vidyard"))').hide();});
</script>