Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active February 19, 2021 18:58
Show Gist options
  • Save landbryo/3c4ab028057de71633238cd792403c2e to your computer and use it in GitHub Desktop.
Save landbryo/3c4ab028057de71633238cd792403c2e to your computer and use it in GitHub Desktop.
<?php
/**
* Filter's the URL Elementor uses for enqueuing generated assets
*
* @author Landon Otis
*/
add_filter( 'set_url_scheme', function ( $url, $scheme, $orig_scheme ) {
if ( preg_match( "/elementor\/css/", $url ) ) {
if ( defined( 'UPLOAD_URL_PATH' ) ) {
$home = get_home_url();
$url = str_replace( UPLOAD_URL_PATH, "{$home}/wp-content/uploads", $url );
}
}
return $url;
}, 99, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment