Hello, Finleydesign,
Thank you for contacting us and for using XStore.
The issue is caused by the spaces after the website domain which the computer automatically replaces with %20 symbols, which in turn breaks the path to the file. We have added a filter to the functions.php of the child theme in order to resolve this. However, the best solution from your side would be to remove the spaces after the website domain and then remove the filter from the child theme.
Filter code
add_filter( ‘plugins_url’, ‘wpb_plugins_url_fix’, 10, 3 );
function wpb_plugins_url_fix($url, $path, $plugin){
$url = preg_replace( ‘/\s/’, ”, $url );
return $url;
}
Screenshots we added in the Private Content
Kind Regards,
8theme team