From 5dfd91c55c93c16b9011a09dfd7eeada171e1415 Mon Sep 17 00:00:00 2001 From: Brandon Kolle Date: Tue, 20 Oct 2020 18:17:28 -0400 Subject: [PATCH] Changed name of generic taxonomy config file identifier --- src/TemplateChooser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TemplateChooser.php b/src/TemplateChooser.php index d7ea1a91..8f726bb2 100644 --- a/src/TemplateChooser.php +++ b/src/TemplateChooser.php @@ -125,7 +125,7 @@ class TemplateChooser $templates = new Collection(); // First candidate: defined specifically in the taxonomy - $templates->push($this->config->get('taxonomy/' . $taxonomyslug . '/listing_template')); + $templates->push($this->config->get('taxonomies/' . $taxonomyslug . '/listing_template')); // Second candidate: Theme-specific config.yml file. $templates->push($this->config->get('theme/listing_template'));