Mute embed video (instagram feed) on main page (Dawn Theme)

Hi there, I am trying to mute videos of my instagram feed that are embedded on my main page, and remove autoplay as well. Do you have any solutions to help?

I used the app Tagembed and used the code on the main page to display everything, but I am not able to either stop autoplay, and remove the sound.

hello there

To mute the videos and disable autoplay for your Instagram feed embedded on your website using Tagembed, you can use some CSS code.

Here’s an example of the CSS code you can add to your website:

.tagembed iframe {
    pointer-events: none;
}
.tagembed iframe + div {
    display: none;
}

This code will disable the click event on the iframe containing the video, which stops the video from playing when clicked. It will also hide the video controls, which include the sound control.

You can add this CSS code to your website’s CSS stylesheet or add it directly to your page’s code in the header section.