From 2fc542ac62771b6268e01b42a2af4bdaea25e7e8 Mon Sep 17 00:00:00 2001 From: Marcus Quinn Date: Mon, 17 Mar 2025 00:02:57 +0000 Subject: [PATCH] Update plugin UI: full-page theme panel, add new tools and hosting providers --- admin/settings.php | 68 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 67 insertions(+), 1 deletion(-) diff --git a/admin/settings.php b/admin/settings.php index 9047639..2303534 100644 --- a/admin/settings.php +++ b/admin/settings.php @@ -298,6 +298,17 @@ function wp_allstars_get_tools() { ) ) ), + 'pagespeed' => array( + 'name' => 'PageSpeed Insights', + 'description' => 'Google tool that analyzes web page performance on mobile and desktop devices.', + 'button_group' => array( + array( + 'text' => 'Home Page', + 'url' => 'https://pagespeed.web.dev/', + 'primary' => true + ) + ) + ), 'windsurf' => array( 'name' => 'Codeium Windsurf', 'description' => 'AI-powered IDE with advanced code completion and generation capabilities.', @@ -672,6 +683,21 @@ function wp_allstars_get_hosting_providers() { 'url' => 'https://www.namecheap.com/hosting/shared/' ) ) + ), + 'updownio' => array( + 'name' => 'Updown.io', + 'description' => 'Simple and affordable website monitoring service with uptime checks and performance metrics.', + 'button_group' => array( + array( + 'text' => 'Home Page', + 'url' => 'https://updown.io/', + 'primary' => true + ), + array( + 'text' => 'Pricing', + 'url' => 'https://updown.io/pricing' + ) + ) ) ); } @@ -1570,7 +1596,47 @@ function wp_allstars_settings_page() {
-
+ +