Skip to content

Instantly share code, notes, and snippets.

@carlosonweb
Created August 8, 2017 22:03
Show Gist options
  • Save carlosonweb/e71ddf43082f8c171774d6e83a3a342e to your computer and use it in GitHub Desktop.
Save carlosonweb/e71ddf43082f8c171774d6e83a3a342e to your computer and use it in GitHub Desktop.
Fix BB Background Image not fetching from CDN
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