From e644556e4accf4a9e29f411bf6114fc9796f21f1 Mon Sep 17 00:00:00 2001 From: Steve Tentrop Date: Tue, 5 Oct 2021 09:55:36 +0200 Subject: [PATCH] add tags as search template type --- src/Services/TemplateService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/TemplateService.php b/src/Services/TemplateService.php index 213d485d0..accd2cafc 100644 --- a/src/Services/TemplateService.php +++ b/src/Services/TemplateService.php @@ -154,7 +154,7 @@ public function isSearch(): bool { /** @var ShopUrls $shopUrls */ $shopUrls = pluginApp(ShopUrls::class); - return $shopUrls->is(RouteConfig::SEARCH); + return $shopUrls->is(RouteConfig::SEARCH) || $shopUrls->is(RouteConfig::TAGS); } /**