Why are my video thumbnails blurry on the Dawn theme?

Shopify is automatically adding “_small” to the URL of my video thumbnail causing it to be very blurry:

If copy the URL into your browser you’ll see this issue. If you remove _small from the URL then it’s full size. How do I stop the theme from automatically doing this? We are using the Dawn theme.

Hi @kimberlyfarrell ,
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

https://wavesandwords.org/password

TempPass

Thank you!

Hi there, any luck with this?

Hi @kimberlyfarrell ,

In Online store, select Themes → More → Edit code

In theme.liquid, add the following code before the tag

<script>
        let videos = document.querySelectorAll('.multicolumn-list__item.grid__item .multicolumn-card.content-container video')
        videos.forEach(item=>{
            let newThumbnail = item.getAttribute('poster'); 
            if (newThumbnail.includes('_small')){ 
                newThumbnail = newThumbnail.replace('_small',''); 
                item.setAttribute('poster', newThumbnail)
            }
        })
</script>

Click Save to save changes

Hope it helps @kimberlyfarrell !

Thank you so much, that did the trick!