This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: AAjax Search Pro Issue on WP Multisite subsite

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

#36057
Ernest MarcinkoErnest Marcinko
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;
}