Changeset 3459357
- Timestamp:
- 02/11/2026 09:22:32 PM (6 weeks ago)
- Location:
- visiblefirst
- Files:
-
- 6 edited
- 1 copied
-
tags/3.2.42 (copied) (copied from visiblefirst/trunk)
-
tags/3.2.42/includes/modules/seo/class-visibl-seo.php (modified) (1 diff)
-
tags/3.2.42/readme.txt (modified) (2 diffs)
-
tags/3.2.42/visiblefirst.php (modified) (2 diffs)
-
trunk/includes/modules/seo/class-visibl-seo.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/visiblefirst.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
visiblefirst/tags/3.2.42/includes/modules/seo/class-visibl-seo.php
r3457294 r3459357 337 337 338 338 case 'visibl_vf_score': 339 // Calculate combined VF score (average of SEO, SMO, AEO) 340 $seo = get_post_meta($post_id, '_visibl_seo_score', true) ?: 0; 341 $smo = get_post_meta($post_id, '_visibl_smo_score', true) ?: 0; 342 $aeo = get_post_meta($post_id, '_visibl_aeo_score', true) ?: 0; 343 $vf_score = round(($seo + $smo + $aeo) / 3); 339 // Use pre-calculated VF score, or calculate from correct meta keys 340 $vf_score = get_post_meta($post_id, '_visibl_pro_score', true); 341 if (!$vf_score) { 342 $seo = get_post_meta($post_id, '_visibl_seo_score', true) ?: 0; 343 $smo = get_post_meta($post_id, '_visibl_smo_score', true) ?: 0; 344 $ae = get_post_meta($post_id, '_visibl_ae_score', true) ?: 0; 345 $vf_score = round(($seo + $smo + $ae) / 3); 346 } 344 347 $color_class = Visibl_Core::get_score_color($vf_score); 345 348 printf('<strong><span class="visibl-score-badge %s">%d</span></strong>', esc_attr($color_class), intval($vf_score)); 346 349 break; 350 347 351 348 352 case 'visibl_optimize': -
visiblefirst/tags/3.2.42/readme.txt
r3459258 r3459357 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.2.4 17 Stable tag: 3.2.42 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 394 394 == Changelog == 395 395 396 = 3.2.42 = 397 * FIX: Post list VF Score column now shows correct score (was using stale meta key) 398 399 396 400 = 3.2.41 = 397 401 * NEW: VF Index™ - See which AI platforms (ChatGPT, Claude, Gemini, Perplexity) know about your business -
visiblefirst/tags/3.2.42/visiblefirst.php
r3459258 r3459357 3 3 * Plugin Name: VisibleFirst 4 4 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress. 5 * Version: 3.2.4 15 * Version: 3.2.42 6 6 * Author: VisibleFirst 7 7 * Author URI: https://visiblefirst.com … … 16 16 17 17 // Plugin constants 18 define('VISIBL_VERSION', '3.2.4 1');18 define('VISIBL_VERSION', '3.2.42'); 19 19 define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__)); 20 20 define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__)); -
visiblefirst/trunk/includes/modules/seo/class-visibl-seo.php
r3457294 r3459357 337 337 338 338 case 'visibl_vf_score': 339 // Calculate combined VF score (average of SEO, SMO, AEO) 340 $seo = get_post_meta($post_id, '_visibl_seo_score', true) ?: 0; 341 $smo = get_post_meta($post_id, '_visibl_smo_score', true) ?: 0; 342 $aeo = get_post_meta($post_id, '_visibl_aeo_score', true) ?: 0; 343 $vf_score = round(($seo + $smo + $aeo) / 3); 339 // Use pre-calculated VF score, or calculate from correct meta keys 340 $vf_score = get_post_meta($post_id, '_visibl_pro_score', true); 341 if (!$vf_score) { 342 $seo = get_post_meta($post_id, '_visibl_seo_score', true) ?: 0; 343 $smo = get_post_meta($post_id, '_visibl_smo_score', true) ?: 0; 344 $ae = get_post_meta($post_id, '_visibl_ae_score', true) ?: 0; 345 $vf_score = round(($seo + $smo + $ae) / 3); 346 } 344 347 $color_class = Visibl_Core::get_score_color($vf_score); 345 348 printf('<strong><span class="visibl-score-badge %s">%d</span></strong>', esc_attr($color_class), intval($vf_score)); 346 349 break; 350 347 351 348 352 case 'visibl_optimize': -
visiblefirst/trunk/readme.txt
r3459258 r3459357 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.2.4 17 Stable tag: 3.2.42 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 394 394 == Changelog == 395 395 396 = 3.2.42 = 397 * FIX: Post list VF Score column now shows correct score (was using stale meta key) 398 399 396 400 = 3.2.41 = 397 401 * NEW: VF Index™ - See which AI platforms (ChatGPT, Claude, Gemini, Perplexity) know about your business -
visiblefirst/trunk/visiblefirst.php
r3459258 r3459357 3 3 * Plugin Name: VisibleFirst 4 4 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress. 5 * Version: 3.2.4 15 * Version: 3.2.42 6 6 * Author: VisibleFirst 7 7 * Author URI: https://visiblefirst.com … … 16 16 17 17 // Plugin constants 18 define('VISIBL_VERSION', '3.2.4 1');18 define('VISIBL_VERSION', '3.2.42'); 19 19 define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__)); 20 20 define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.