Changeset 3429821
- Timestamp:
- 12/30/2025 09:32:00 PM (7 weeks ago)
- Location:
- seo-ai-audit-tool
- Files:
-
- 10 edited
- 1 copied
-
tags/2.0.0 (copied) (copied from seo-ai-audit-tool/trunk)
-
tags/2.0.0/assets/css/seoaudp-bulk-fix.css (modified) (1 diff)
-
tags/2.0.0/changelog.txt (modified) (1 diff)
-
tags/2.0.0/includes/class-seo-bulk-fix-dashboard.php (modified) (1 diff)
-
tags/2.0.0/readme.md (modified) (1 diff)
-
tags/2.0.0/seo-ai-audit-tool.php (modified) (3 diffs)
-
trunk/assets/css/seoaudp-bulk-fix.css (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/class-seo-bulk-fix-dashboard.php (modified) (1 diff)
-
trunk/readme.md (modified) (1 diff)
-
trunk/seo-ai-audit-tool.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seo-ai-audit-tool/tags/2.0.0/assets/css/seoaudp-bulk-fix.css
r3367491 r3429821 1 1 /* SEO Bulk Fix Dashboard Styles */ 2 #adminmenuwrap, #adminmenumain{3 display: none;4 }5 #wpcontent{6 margin-left: 0;7 }8 2 /* SEO Problem Cards */ 9 3 .seoaudp-seo-cards-container { -
seo-ai-audit-tool/tags/2.0.0/changelog.txt
r3384129 r3429821 1 = 2.0.0 2025-12-30 2 3 Fixed: External banners on Bulk Fix Dashboard page 4 Improved: UX for collapsed wordpress banners 5 1 6 = 1.1.9 2025-10-24 2 7 -
seo-ai-audit-tool/tags/2.0.0/includes/class-seo-bulk-fix-dashboard.php
r3333926 r3429821 46 46 ); 47 47 48 add_action( 'load-' . $page, array($this, 'disable_admin_notices') ); 48 49 add_action( 'load-' . $page, 'seoaudp_init_hooks' ); 50 } 51 52 public function disable_admin_notices() { 53 remove_all_actions('admin_notices'); 54 remove_all_actions('all_admin_notices'); 55 remove_all_actions('network_admin_notices'); 56 remove_all_actions('user_admin_notices'); 49 57 } 50 58 -
seo-ai-audit-tool/tags/2.0.0/readme.md
r3384129 r3429821 2 2 Contributors: Designful 3 3 Plugin URL: https://seo-ai-audit-tool.designful.ca/ 4 Version: 1.1.94 Version: 2.0.0 5 5 Tags: seo audit, ai seo, conversion optimization, content analysis, search intent 6 6 Requires at least: 4.0 7 Tested up to: 6. 8.38 Stable tag: 1.1.97 Tested up to: 6.9 8 Stable tag: 2.0.0 9 9 Requires PHP: 7.4 10 10 License: GPLv2 or later -
seo-ai-audit-tool/tags/2.0.0/seo-ai-audit-tool.php
r3384129 r3429821 4 4 * Plugin URI: https://designful.ca/apps/seo-ai-audit-tool/ 5 5 * Description: A WordPress plugin to audit SEO elements of pages and perform AI-powered content analysis 6 * Version: 1.1.96 * Version: 2.0.0 7 7 * Author: Designful 8 8 * License: GPL2 … … 20 20 define('SEOAUDP_PLUGIN_DIR', plugin_dir_path(__FILE__)); 21 21 define('SEOAUDP_PLUGIN_URL', plugin_dir_url(__FILE__)); 22 define('SEOAUDP_PLUGIN_VERSION', ' 1.1.9');22 define('SEOAUDP_PLUGIN_VERSION', '2.0.0'); 23 23 define('SEOAUDP_PLUGIN_BETA_VERSION', false); 24 24 define('SEOAUDP_DB_VERSION', '1.9'); … … 161 161 // Ensure migration to JSON field runs early so reads only hit the new column 162 162 add_action('plugins_loaded', 'seoaudp_ensure_secondary_keywords_migration'); 163 add_filter('admin_body_class', 'seoaudp_force_folded_admin_menu', 20); 164 165 function seoaudp_is_plugin_admin_screen() { 166 if (!is_admin() || !function_exists('get_current_screen')) { 167 return false; 168 } 169 170 $screen = get_current_screen(); 171 if (!$screen || empty($screen->id)) { 172 return false; 173 } 174 175 return strpos($screen->id, 'seo-ai-audit-tool') !== false; 176 } 177 178 function seoaudp_force_folded_admin_menu($classes) { 179 if (!seoaudp_is_plugin_admin_screen()) { 180 return $classes; 181 } 182 183 if (strpos($classes, 'folded') === false) { 184 $classes .= ' folded'; 185 } 186 187 return $classes; 188 } 163 189 164 190 // Activation hook -
seo-ai-audit-tool/trunk/assets/css/seoaudp-bulk-fix.css
r3367491 r3429821 1 1 /* SEO Bulk Fix Dashboard Styles */ 2 #adminmenuwrap, #adminmenumain{3 display: none;4 }5 #wpcontent{6 margin-left: 0;7 }8 2 /* SEO Problem Cards */ 9 3 .seoaudp-seo-cards-container { -
seo-ai-audit-tool/trunk/changelog.txt
r3384129 r3429821 1 = 2.0.0 2025-12-30 2 3 Fixed: External banners on Bulk Fix Dashboard page 4 Improved: UX for collapsed wordpress banners 5 1 6 = 1.1.9 2025-10-24 2 7 -
seo-ai-audit-tool/trunk/includes/class-seo-bulk-fix-dashboard.php
r3333926 r3429821 46 46 ); 47 47 48 add_action( 'load-' . $page, array($this, 'disable_admin_notices') ); 48 49 add_action( 'load-' . $page, 'seoaudp_init_hooks' ); 50 } 51 52 public function disable_admin_notices() { 53 remove_all_actions('admin_notices'); 54 remove_all_actions('all_admin_notices'); 55 remove_all_actions('network_admin_notices'); 56 remove_all_actions('user_admin_notices'); 49 57 } 50 58 -
seo-ai-audit-tool/trunk/readme.md
r3384129 r3429821 2 2 Contributors: Designful 3 3 Plugin URL: https://seo-ai-audit-tool.designful.ca/ 4 Version: 1.1.94 Version: 2.0.0 5 5 Tags: seo audit, ai seo, conversion optimization, content analysis, search intent 6 6 Requires at least: 4.0 7 Tested up to: 6. 8.38 Stable tag: 1.1.97 Tested up to: 6.9 8 Stable tag: 2.0.0 9 9 Requires PHP: 7.4 10 10 License: GPLv2 or later -
seo-ai-audit-tool/trunk/seo-ai-audit-tool.php
r3384129 r3429821 4 4 * Plugin URI: https://designful.ca/apps/seo-ai-audit-tool/ 5 5 * Description: A WordPress plugin to audit SEO elements of pages and perform AI-powered content analysis 6 * Version: 1.1.96 * Version: 2.0.0 7 7 * Author: Designful 8 8 * License: GPL2 … … 20 20 define('SEOAUDP_PLUGIN_DIR', plugin_dir_path(__FILE__)); 21 21 define('SEOAUDP_PLUGIN_URL', plugin_dir_url(__FILE__)); 22 define('SEOAUDP_PLUGIN_VERSION', ' 1.1.9');22 define('SEOAUDP_PLUGIN_VERSION', '2.0.0'); 23 23 define('SEOAUDP_PLUGIN_BETA_VERSION', false); 24 24 define('SEOAUDP_DB_VERSION', '1.9'); … … 161 161 // Ensure migration to JSON field runs early so reads only hit the new column 162 162 add_action('plugins_loaded', 'seoaudp_ensure_secondary_keywords_migration'); 163 add_filter('admin_body_class', 'seoaudp_force_folded_admin_menu', 20); 164 165 function seoaudp_is_plugin_admin_screen() { 166 if (!is_admin() || !function_exists('get_current_screen')) { 167 return false; 168 } 169 170 $screen = get_current_screen(); 171 if (!$screen || empty($screen->id)) { 172 return false; 173 } 174 175 return strpos($screen->id, 'seo-ai-audit-tool') !== false; 176 } 177 178 function seoaudp_force_folded_admin_menu($classes) { 179 if (!seoaudp_is_plugin_admin_screen()) { 180 return $classes; 181 } 182 183 if (strpos($classes, 'folded') === false) { 184 $classes .= ' folded'; 185 } 186 187 return $classes; 188 } 163 189 164 190 // Activation hook
Note: See TracChangeset
for help on using the changeset viewer.