From 4ba61d8376b49128892991ec49a87e3928eb41b7 Mon Sep 17 00:00:00 2001 From: Devin Green Date: Wed, 29 Mar 2023 10:56:48 -0500 Subject: [PATCH 1/2] filtered through pagefinder for irrelevant items --- seeds/blueprints/content/blog/author.yaml | 1 + seeds/blueprints/content/blog/category.yaml | 1 + seeds/blueprints/content/blog/post.yaml | 1 + seeds/blueprints/content/events/event.yaml | 1 + seeds/blueprints/content/icons/icons.yaml | 1 + seeds/blueprints/content/menu/main_menu.yaml | 1 + seeds/blueprints/content/menu/secondary_menu.yaml | 1 + seeds/blueprints/content/menu/social_menu.yaml | 1 + seeds/blueprints/content/page/page.yaml | 1 + seeds/blueprints/content/shop/categories.yaml | 1 + seeds/blueprints/content/shop/orders.yaml | 1 + seeds/blueprints/content/shop/products.yaml | 1 + seeds/blueprints/content/shop/properties.yaml | 1 + seeds/blueprints/forms/forms.yaml | 1 + seeds/blueprints/forms/submissions.yaml | 1 + 15 files changed, 15 insertions(+) diff --git a/seeds/blueprints/content/blog/author.yaml b/seeds/blueprints/content/blog/author.yaml index 3eff21c..186f4f0 100644 --- a/seeds/blueprints/content/blog/author.yaml +++ b/seeds/blueprints/content/blog/author.yaml @@ -4,6 +4,7 @@ type: entry name: Post Authors drafts: false multisite: sync +pagefinder: item navigation: parent: Blog\Posts diff --git a/seeds/blueprints/content/blog/category.yaml b/seeds/blueprints/content/blog/category.yaml index 052aa95..06d7ca4 100644 --- a/seeds/blueprints/content/blog/category.yaml +++ b/seeds/blueprints/content/blog/category.yaml @@ -4,6 +4,7 @@ handle: Blog\Categories name: Post Categories drafts: false multisite: sync +pagefinder: false structure: maxDepth: 1 diff --git a/seeds/blueprints/content/blog/post.yaml b/seeds/blueprints/content/blog/post.yaml index 2acb1f0..06fa489 100644 --- a/seeds/blueprints/content/blog/post.yaml +++ b/seeds/blueprints/content/blog/post.yaml @@ -4,6 +4,7 @@ type: stream name: Posts drafts: true multisite: sync +pagefinder: item primaryNavigation: label: Blog diff --git a/seeds/blueprints/content/events/event.yaml b/seeds/blueprints/content/events/event.yaml index 5a7bd80..6338af0 100644 --- a/seeds/blueprints/content/events/event.yaml +++ b/seeds/blueprints/content/events/event.yaml @@ -4,6 +4,7 @@ type: structure name: Events drafts: true multisite: sync +pagefinder: item structure: maxDepth: 0 diff --git a/seeds/blueprints/content/icons/icons.yaml b/seeds/blueprints/content/icons/icons.yaml index 63f3bea..01ecfdd 100644 --- a/seeds/blueprints/content/icons/icons.yaml +++ b/seeds/blueprints/content/icons/icons.yaml @@ -4,6 +4,7 @@ type: stream name: Icons drafts: false multisite: sync +pagefinder: false primaryNavigation: label: Icons diff --git a/seeds/blueprints/content/menu/main_menu.yaml b/seeds/blueprints/content/menu/main_menu.yaml index d5813ae..8c5ced3 100644 --- a/seeds/blueprints/content/menu/main_menu.yaml +++ b/seeds/blueprints/content/menu/main_menu.yaml @@ -4,6 +4,7 @@ type: structure name: Main Menu drafts: false multisite: sync +pagefinder: false navigation: icon: icon-list diff --git a/seeds/blueprints/content/menu/secondary_menu.yaml b/seeds/blueprints/content/menu/secondary_menu.yaml index 65002cf..616823f 100644 --- a/seeds/blueprints/content/menu/secondary_menu.yaml +++ b/seeds/blueprints/content/menu/secondary_menu.yaml @@ -4,6 +4,7 @@ type: structure name: Secondary Menu drafts: false multisite: sync +pagefinder: false navigation: diff --git a/seeds/blueprints/content/menu/social_menu.yaml b/seeds/blueprints/content/menu/social_menu.yaml index e2ddb1c..15627fb 100644 --- a/seeds/blueprints/content/menu/social_menu.yaml +++ b/seeds/blueprints/content/menu/social_menu.yaml @@ -4,6 +4,7 @@ type: structure name: Social Menu drafts: false multisite: sync +pagefinder: false navigation: diff --git a/seeds/blueprints/content/page/page.yaml b/seeds/blueprints/content/page/page.yaml index 77272d8..edc54ea 100644 --- a/seeds/blueprints/content/page/page.yaml +++ b/seeds/blueprints/content/page/page.yaml @@ -4,6 +4,7 @@ type: structure name: Pages drafts: true multisite: sync +pagefinder: item primaryNavigation: label: Pages & Menus diff --git a/seeds/blueprints/content/shop/categories.yaml b/seeds/blueprints/content/shop/categories.yaml index 0f9024a..2d3e05a 100644 --- a/seeds/blueprints/content/shop/categories.yaml +++ b/seeds/blueprints/content/shop/categories.yaml @@ -4,6 +4,7 @@ type: structure name: Product Categories drafts: false multisite: sync +pagefinder: false navigation: icon: icon-th diff --git a/seeds/blueprints/content/shop/orders.yaml b/seeds/blueprints/content/shop/orders.yaml index 075820f..e8ebf25 100644 --- a/seeds/blueprints/content/shop/orders.yaml +++ b/seeds/blueprints/content/shop/orders.yaml @@ -3,6 +3,7 @@ handle: Content\Orders type: stream name: Orders drafts: false +pagefinder: false navigation: icon: icon-shopping-bag diff --git a/seeds/blueprints/content/shop/products.yaml b/seeds/blueprints/content/shop/products.yaml index 80eccb2..564e28f 100644 --- a/seeds/blueprints/content/shop/products.yaml +++ b/seeds/blueprints/content/shop/products.yaml @@ -4,6 +4,7 @@ type: structure name: Products drafts: true multisite: sync +pagefinder: item structure: maxDepth: 0 diff --git a/seeds/blueprints/content/shop/properties.yaml b/seeds/blueprints/content/shop/properties.yaml index 94e27f8..c5a95c4 100644 --- a/seeds/blueprints/content/shop/properties.yaml +++ b/seeds/blueprints/content/shop/properties.yaml @@ -3,6 +3,7 @@ handle: Content\Product\Properties type: structure name: Product Properties multisite: sync +pagefinder: false navigation: icon: icon-tags diff --git a/seeds/blueprints/forms/forms.yaml b/seeds/blueprints/forms/forms.yaml index 63baf27..89649cc 100644 --- a/seeds/blueprints/forms/forms.yaml +++ b/seeds/blueprints/forms/forms.yaml @@ -4,6 +4,7 @@ type: stream name: Forms drafts: false multisite: sync +pagefinder: false primaryNavigation: label: Forms diff --git a/seeds/blueprints/forms/submissions.yaml b/seeds/blueprints/forms/submissions.yaml index 044acad..1469565 100644 --- a/seeds/blueprints/forms/submissions.yaml +++ b/seeds/blueprints/forms/submissions.yaml @@ -4,6 +4,7 @@ type: stream name: Submissions drafts: false multisite: false +pagefinder: false navigation: icon: icon-inbox From e734c01cc47ef60385cf98423112eef3a6dbde1e Mon Sep 17 00:00:00 2001 From: Devin Green Date: Wed, 29 Mar 2023 11:00:22 -0500 Subject: [PATCH 2/2] version bump --- version.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/version.yaml b/version.yaml index 5dc50db..8d5c785 100644 --- a/version.yaml +++ b/version.yaml @@ -99,4 +99,5 @@ v6.3.16: Added backgrounds to sections. Added advanced content to columns v6.3.17: Added card styling to columns v6.3.19: Fix locale being stuck in url if there is more than one site. v6.3.20: fix issue where navbar container style isn't set. -v6.3.21: Added extra sitemap options for tailor entries. \ No newline at end of file +v6.3.21: Added extra sitemap options for tailor entries. +v6.3.22: Setup pagefinder to only use front facing page types. Requires October CMS v3.3.3 \ No newline at end of file