Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › AAjax Search Pro Issue on WP Multisite subsite › Reply To: AAjax Search Pro Issue on WP Multisite subsite
December 22, 2021 at 3:22 pm
#36057
Keymaster
Hi,
The plugin search instances are accessible across the networ – for that reason the main site upload path and URL needs to be used to store the stylesheet files.
If you want, you can change the upload directory and upload URL parameters to something different via these filter hooks:
add_filter('asp_glob_upload_path', 'custom_asp_glob_upload_path');
function custom_asp_glob_upload_path( $path )
return $path;
}
add_filter('asp_glob_upload_url', 'custom_asp_glob_upload_url');
function custom_asp_glob_upload_url( $url )
return $url;
}