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

This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko Ernest Marcinko 2 years, 4 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #36049

    On all Multisite subsite – no only – the client call this asset from the network admin domani https://multisite.italgas.it/wp-content/uploads/asp_upload/style.instances-ho-is-po-no-co-ga-se-is.css?ver=44XX3V

    The network admin domain is set over firewall whitelist.

    Can you help us to fix and stop to call the style.instances-ho-is-po-no-co-ga-se-is.css from the asp_upload folder inside multisite network site?

    Thanks in advance
    Francesco

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

    If you like my products, don't forget to rate them on codecanyon :)


Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.