Skip to content

Commit 98e269a

Browse files
authored
Merge pull request #177 from RivianTrackr/claude/add-stats-share-image-qmNqS
Claude/add stats share image qm nq s
2 parents 3d68d61 + cf42344 commit 98e269a

7 files changed

Lines changed: 1527 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to the Rivian Tire Guide plugin will be documented in this f
44

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

7+
## [1.23.0] - 2026-03-01
8+
9+
### Added
10+
- **Standalone tire review page** — New shareable page at `/tire-review/` where anyone can select a tire and submit a review without navigating the full catalog. Features a searchable tire dropdown, inline review form with star rating, and support for both logged-in and guest reviewers. Deep-link to a specific tire via `?tire=TIRE_ID` for social sharing with tire-specific OG/Twitter meta tags.
11+
- **Tire Review Page Slug setting** — Configurable URL slug for the review page in Settings > Display Settings (default: `tire-review`).
12+
713
## [1.22.0] - 2026-03-01
814

915
### Changed

admin/views/settings.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
$cdn_prefix = $settings['cdn_prefix'] ?? '';
1111
$compare_slug = $settings['compare_slug'] ?? 'tire-compare';
1212
$user_reviews_slug = $settings['user_reviews_slug'] ?? 'user-reviews';
13+
$tire_review_slug = $settings['tire_review_slug'] ?? 'tire-review';
1314

1415
// Theme color defaults.
1516
$default_colors = array(
@@ -102,6 +103,13 @@
102103
<p class="rtg-field-description">Page slug where the <code>[rivian_user_reviews]</code> shortcode is placed. Default: <code>user-reviews</code> (accessible at <code><?php echo esc_html( home_url( '/' . $user_reviews_slug . '/' ) ); ?></code>)</p>
103104
<input type="text" id="user_reviews_slug" name="user_reviews_slug" value="<?php echo esc_attr( $user_reviews_slug ); ?>">
104105
</div>
106+
<div class="rtg-field-row">
107+
<div class="rtg-field-label-row">
108+
<label class="rtg-field-label" for="tire_review_slug">Tire Review Page Slug</label>
109+
</div>
110+
<p class="rtg-field-description">URL slug for the standalone tire review page. Default: <code>tire-review</code> (accessible at <code><?php echo esc_html( home_url( '/' . $tire_review_slug . '/' ) ); ?></code>)</p>
111+
<input type="text" id="tire_review_slug" name="tire_review_slug" value="<?php echo esc_attr( $tire_review_slug ); ?>">
112+
</div>
105113
</div>
106114
</div>
107115

0 commit comments

Comments
 (0)