Bruce, the site URL is https://photographylife.com
I don’t have any links to examples, because I manually go into the code editor and remove redirects from wp.com and ssl=1 appends at the end, but here is a sample of code of what happens when I don’t change it:
<!-- wp:jetpack/image-compare {"imageBefore":{"id":249695,"url":"https://i0.wp.com/photographylife.com/wp-content/uploads/2022/09/compare1.jpg?ssl=1","alt":"Compare1","width":2048,"height":1535},"imageAfter":{"id":249696,"url":"https://i1.wp.com/photographylife.com/wp-content/uploads/2022/09/compare2.jpg?ssl=1","alt":"Compare2","width":2048,"height":1535}} -->
<figure class="wp-block-jetpack-image-compare"><div class="juxtapose" data-mode="horizontal"><img id="249695" src="https://i0.wp.com/photographylife.com/wp-content/uploads/2022/09/compare1.jpg?ssl=1" alt="Compare1" width="2048" height="1535" class="image-compare__image-before"/><img id="249696" src="https://i1.wp.com/photographylife.com/wp-content/uploads/2022/09/compare2.jpg?ssl=1" alt="Compare2" width="2048" height="1535" class="image-compare__image-after"/></div></figure>
<!-- /wp:jetpack/image-compare -->
So what I have to do for each before/after image, is switch to code editor, then remove “ix.wp.com/” from each src, then remove “?ssl=1” at the end of the URL.
Also, why does the same image of before and after has to be coded twice for it to work? Can’t you guys make it simpler code so that the URL to the file is written once? That’s how my before/after plugin used to work before I switched to Jetpack image compare.
Thanks!