Minify breaks if the home_url contains query args
-
If there are some active plugins (like WPML) who add query strings to home_url, the generated minify url does not work properly on multisite installs (generates urls which look like
[homeurl]?lang=es/[homeurl]/[contentpath]
)The solution is simple, add
$site_url_ssl = strtok($site_url_ssl,’?’);
to line 155 if the inc/define.phpcould the plugin developer could please add this line?
- The topic ‘Minify breaks if the home_url contains query args’ is closed to new replies.