Plugin Directory

Changeset 3461985


Ignore:
Timestamp:
02/15/2026 06:03:46 PM (6 weeks ago)
Author:
visiblefirst
Message:

Release 3.2.59 - Fix duplicate breadcrumb on homepage

Location:
visiblefirst
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • visiblefirst/tags/3.2.59/includes/modules/ae/class-visibl-ae.php

    r3461929 r3461985  
    471471     */
    472472    private static function get_breadcrumb_schema($post) {
     473        // No breadcrumb needed on front page - you're already "home"
     474        if (is_front_page()) {
     475            return null;
     476        }
     477
    473478        $items = [];
    474479        $position = 1;
  • visiblefirst/tags/3.2.59/readme.txt

    r3461929 r3461985  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.2.58
     7Stable tag: 3.2.59
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    197197== Changelog ==
    198198
    199 = 3.2.58 =
    200 * All features now available to all users (Free tier gets full functionality)
    201 * Title tag management enabled for all users
    202 * llms.txt serving enabled for all users
    203 
    204 = 3.2.57 =
    205 * Removed tier-based feature restrictions
    206 * Unified feature set across all license types
     199= 3.2.59 =
     200* FIX: Remove duplicate breadcrumb on homepage (was showing two "Home" items)
    207201
    208202= 3.2.56 =
  • visiblefirst/tags/3.2.59/visiblefirst.php

    r3461929 r3461985  
    33 * Plugin Name: VisibleFirst
    44 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress.
    5  * Version: 3.2.58
     5 * Version: 3.2.59
    66 * Author: VisibleFirst
    77 * Author URI: https://visiblefirst.com
     
    1616
    1717// Plugin constants
    18 define('VISIBL_VERSION', '3.2.58');
     18define('VISIBL_VERSION', '3.2.59');
    1919define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
  • visiblefirst/trunk/includes/modules/ae/class-visibl-ae.php

    r3461929 r3461985  
    471471     */
    472472    private static function get_breadcrumb_schema($post) {
     473        // No breadcrumb needed on front page - you're already "home"
     474        if (is_front_page()) {
     475            return null;
     476        }
     477
    473478        $items = [];
    474479        $position = 1;
  • visiblefirst/trunk/readme.txt

    r3461929 r3461985  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.2.58
     7Stable tag: 3.2.59
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    197197== Changelog ==
    198198
    199 = 3.2.58 =
    200 * All features now available to all users (Free tier gets full functionality)
    201 * Title tag management enabled for all users
    202 * llms.txt serving enabled for all users
    203 
    204 = 3.2.57 =
    205 * Removed tier-based feature restrictions
    206 * Unified feature set across all license types
     199= 3.2.59 =
     200* FIX: Remove duplicate breadcrumb on homepage (was showing two "Home" items)
    207201
    208202= 3.2.56 =
  • visiblefirst/trunk/visiblefirst.php

    r3461929 r3461985  
    33 * Plugin Name: VisibleFirst
    44 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress.
    5  * Version: 3.2.58
     5 * Version: 3.2.59
    66 * Author: VisibleFirst
    77 * Author URI: https://visiblefirst.com
     
    1616
    1717// Plugin constants
    18 define('VISIBL_VERSION', '3.2.58');
     18define('VISIBL_VERSION', '3.2.59');
    1919define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.