Hi @blackdranzer,
we have an update for you.
We do support multisites now!
For new installs it will just work out of the box. If you already have our plugin installed and run into issues, you need to delete the plugin and then manually delete some tables and options in your database.
Depending on your db prefix and the number of sites you have installed, the following queries need to be executed. Please be sure to make a database backup, before executing the queries.
DROP TABLE IF EXISTS wp_vrts_tests;
DROP TABLE IF EXISTS wp_1_vrts_tests;
DROP TABLE IF EXISTS wp_2_vrts_tests;
...
DROP TABLE IF EXISTS wp_vrts_alerts;
DROP TABLE IF EXISTS wp_1_vrts_alerts;
DROP TABLE IF EXISTS wp_2_vrts_alerts;
...
DELETE FROM wp_options WHERE option_name LIKE 'vrts_%;'
DELETE FROM wp_1_options WHERE option_name LIKE 'vrts_%;'
DELETE FROM wp_2_options WHERE option_name LIKE 'vrts_%;'
...
I hope this helps. Let me know if everything works as expected now.