diff --git a/wordpress/simple-tracking.php b/wordpress/simple-tracking.php index b5b74ca..4329c1e 100644 --- a/wordpress/simple-tracking.php +++ b/wordpress/simple-tracking.php @@ -18,7 +18,7 @@ class Simple_Tracking_Plugin { private static $instance = null; // Tracking server URL - private $tracking_server_url = 'karlbreuer.com'; + private $tracking_server_url = 'tracking1.karlbreuer.com'; /** * Constructor @@ -303,7 +303,9 @@ document.addEventListener("DOMContentLoaded", function() { public function server_url_callback() { $value = get_option('simple_tracking_server_url', $this->tracking_server_url); echo ''; - echo '
Enter the tracking server URL without https:// (e.g., karlbreuer.com)
'; + echo 'Enter the tracking server URL without https:// (e.g., tracking1.karlbreuer.com)
'; + echo 'You will find this in your domain screen in the Palantics app
'; + } /**