Skip to content

Commit

Permalink
Merge pull request #1034 from plentymarkets/fix/search_detection
Browse files Browse the repository at this point in the history
add tags as search template type
  • Loading branch information
Tim-M-S authored Oct 5, 2021
2 parents 48afb43 + e644556 commit c76fefd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/TemplateService.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit c76fefd

Please sign in to comment.