From 81606a0b83943b6de906816b3af3751ec5d25097 Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Thu, 22 May 2025 17:43:32 +0100 Subject: [PATCH] Entries fieldtype: Only show "Allow Creating" option when using stack selector mode --- src/Fieldtypes/Entries.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Fieldtypes/Entries.php b/src/Fieldtypes/Entries.php index 7da9258a681..6816ccd5f1e 100644 --- a/src/Fieldtypes/Entries.php +++ b/src/Fieldtypes/Entries.php @@ -95,6 +95,9 @@ protected function configFieldItems(): array 'instructions' => __('statamic::fieldtypes.entries.config.create'), 'type' => 'toggle', 'default' => true, + 'if' => [ + 'mode' => 'default', + ], ], 'collections' => [ 'display' => __('Collections'),