From 744cdfb8f7784f78826581cecc4f45d9cec75744 Mon Sep 17 00:00:00 2001 From: FrontendDev Date: Sat, 2 May 2026 21:51:21 -0400 Subject: [PATCH] Fix PHP syntax errors: escape apostrophes in single-quoted strings Co-Authored-By: Paperclip --- theme/woocommerce/archive-product.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/woocommerce/archive-product.php b/theme/woocommerce/archive-product.php index f967166..5cb285e 100644 --- a/theme/woocommerce/archive-product.php +++ b/theme/woocommerce/archive-product.php @@ -19,8 +19,8 @@ $cat_desc_map = [ 'wall-decor' => 'Print-on-demand wall art for the soul-tired and decoratively passive-aggressive.', 'stationery' => 'For the person who plans a lot and does a little. Or the other way around.', 'apparel' => 'Wear your grievances. Business casual with a quiet fury.', - 'stickers' => 'Stick your opinions where they'll be seen. Water-resistant, like your resolve.', - 'accessories' => 'The extras that speak for you when you've run out of words.', + 'stickers' => 'Stick your opinions where they\'ll be seen. Water-resistant, like your resolve.', + 'accessories' => 'The extras that speak for you when you\'ve run out of words.', ]; if (empty($cat_desc)) { $cat_desc = $cat_desc_map[$cat_slug] ?? 'The complete collection. Curated for the chronically employed.';