Created
August 8, 2017 22:03
-
-
Save carlosonweb/e71ddf43082f8c171774d6e83a3a342e to your computer and use it in GitHub Desktop.
Fix BB Background Image not fetching from CDN
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fl_builder_rewrite_cdn_urls( $css ) { | |
return str_ireplace( 'example.com', 'example-5782.kxcdn.com', $css ); | |
} | |
add_filter( 'fl_builder_render_css', 'fl_builder_rewrite_cdn_urls' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment