Hide Play Controls on Individual WordPress Videos

To hide the video play control bar in ALL videos on your WordPress website, add the following code to your customised CSS:

.mejs-controls {
display: none !important;
visibility: hidden !important;
}

To hide the play control bar on SPECIFIC (individual) videos, you must also add this code to your customised CSS:

.no-controls .mejs-controls {
display: none !important;
visibility: hidden !important;
}

Then add the following HTML code around the video on your webpage:

<div class="no-controls"> </div>