From 55fe44cc53796fb9512cbbfd61b7fd388a34b598 Mon Sep 17 00:00:00 2001 From: Axiom Date: Wed, 20 May 2026 23:24:12 +0000 Subject: [PATCH 1/2] Improve BRABUS footer and SEO copy --- wp-content/themes/3w-2025/footer.php | 2 +- wp-content/themes/3w-2025/inc/seo-class.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/3w-2025/footer.php b/wp-content/themes/3w-2025/footer.php index 004c085..6a78027 100644 --- a/wp-content/themes/3w-2025/footer.php +++ b/wp-content/themes/3w-2025/footer.php @@ -25,7 +25,7 @@ } ?> diff --git a/wp-content/themes/3w-2025/inc/seo-class.php b/wp-content/themes/3w-2025/inc/seo-class.php index 6e3fe51..8594023 100644 --- a/wp-content/themes/3w-2025/inc/seo-class.php +++ b/wp-content/themes/3w-2025/inc/seo-class.php @@ -76,8 +76,8 @@ class ThreeW_SEO { public function __construct() { $this->site_name = get_bloginfo('name'); $this->site_description = get_bloginfo('description'); - $this->home_title = __('3W Distributing | Performance Parts, Lighting & Bespoke Kits', 'threew-2025'); - $this->home_description = __('Performance parts, lighting, and bespoke fitment expertise for BRABUS, Mansory, and luxury builds.', 'threew-2025'); + $this->home_title = __('3W Distributing | #1 BRABUS Dealer in North America', 'threew-2025'); + $this->home_description = __('#1 BRABUS Dealer in North America specializing in genuine BRABUS parts, luxury aftermarket tuning, performance upgrades, aero kits, wheels, exhaust systems, and custom builds.', 'threew-2025'); $this->default_social_image = $this->prepare_default_social_image(); // Organization data for schema markup @@ -85,7 +85,7 @@ public function __construct() { 'name' => '3W Distributing', 'url' => home_url('/'), 'logo' => get_theme_file_uri('assets/images/logo.png'), - 'description' => 'Performance parts, lighting, and bespoke kits for premium builds. Trusted distributor for global tuning brands.', + 'description' => '#1 BRABUS Dealer in North America specializing in genuine BRABUS parts, luxury aftermarket tuning, performance upgrades, aero kits, wheels, exhaust systems, and custom builds.', 'telephone' => '+1-702-430-6622', 'email' => 'info@3wdistributing.com', 'address' => [ From c265f827f28a631552652dd6571d9e0c9ad4bd87 Mon Sep 17 00:00:00 2001 From: Axiom Date: Wed, 20 May 2026 23:26:47 +0000 Subject: [PATCH 2/2] Remove unsupported dependency review check --- .github/workflows/pr-checks.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index a85fc34..096e4dd 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -55,18 +55,6 @@ jobs: - name: Check theme PHP files run: find wp-content/themes/3w-2025 -name '*.php' -print0 | xargs -0 -n1 php -l - dependency-review: - name: Dependency review - runs-on: ubuntu-latest - steps: - - name: Check out repository - uses: actions/checkout@v4 - - - name: Review dependency changes - uses: actions/dependency-review-action@v4 - with: - fail-on-severity: moderate - npm-audit: name: npm audit runs-on: ubuntu-latest