[Plugin: W3 Total Cache] incomplete cdn rewrites with onmouseover and onmouseout
-
Two of three references to an image are being rewritted to the cdn subdomain, but the third is getting missed. Strange behavior.
code in theme:
<li><a href="https://feeds.feedburner.com/example/" rel="nofollow"><img src="https://example.com/wp-content/themes/example/images/topRss.png" border="0" title="Subscribe via RSS" width="22" height="22" onMouseOver="this.src='https://example.com/wp-content/themes/example/images/topRssHover.png'" onMouseOut="this.src='https://example.com/wp-content/themes/example/images/topRss.png'"></a></li>
code after page load:
<li><a href="https://feeds.feedburner.com/example/" rel="nofollow"><img src="https://cdn.example.com/wp-content/themes/example/images/topRss.png" border="0" title="Subscribe via RSS" width="22" height="22" onMouseOver="this.src='https://cdn.example.com/wp-content/themes/example/images/topRssHover.png'" onMouseOut="this.src='https://example.com/wp-content/themes/example/images/topRss.png'"></a></li>
isolation of the three urls after page load / w3tc processing:
https://cdn.example.com/wp-content/themes/example/images/topRss.png https://cdn.example.com/wp-content/themes/example/images/topRssHover.png https://example.com/wp-content/themes/example/images/topRss.png
Any help appreciated!
- The topic ‘[Plugin: W3 Total Cache] incomplete cdn rewrites with onmouseover and onmouseout’ is closed to new replies.