Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to the Rivian Tire Guide plugin will be documented in this f

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [1.24.3] - 2026-03-02

### Fixed
- **Review email link broken** — The guest review notification email linked to a non-existent admin page (`rivian-tire-guide-reviews` instead of `rtg-reviews`), causing a "not allowed to access this page" error when clicking the link.

### Changed
- **Plugin version** — Bumped to 1.24.3.

## [1.24.2] - 2026-03-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion includes/class-rtg-mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static function send_admin_guest_review_notification( $guest_name, $guest
$review_snippet .= '<p style="margin: 0; color: #6e6e73; font-size: 14px;">' . esc_html( $text ) . '</p>';
}

$reviews_admin_url = admin_url( 'admin.php?page=rivian-tire-guide-reviews' );
$reviews_admin_url = admin_url( 'admin.php?page=rtg-reviews' );

$site_name = esc_html( get_bloginfo( 'name' ) );

Expand Down
4 changes: 2 additions & 2 deletions rivian-tire-guide.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Rivian Tire Guide
* Description: Interactive tire guide for Rivian vehicles with filtering, comparison, and ratings.
* Version: 1.24.2
* Version: 1.24.3
* Author: RivianTrackr
* Text Domain: rivian-tire-guide
* Requires at least: 5.8
Expand All @@ -13,7 +13,7 @@
exit;
}

define( 'RTG_VERSION', '1.24.2' );
define( 'RTG_VERSION', '1.24.3' );
define( 'RTG_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'RTG_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'RTG_PLUGIN_FILE', __FILE__ );
Expand Down
Loading