diff --git a/core/modules/views/src/Plugin/views/display/PathPluginBase.php b/core/modules/views/src/Plugin/views/display/PathPluginBase.php index b73a4251..18874853 100644 --- a/core/modules/views/src/Plugin/views/display/PathPluginBase.php +++ b/core/modules/views/src/Plugin/views/display/PathPluginBase.php @@ -440,7 +440,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { $form['path'] = [ '#type' => 'textfield', '#title' => $this->t('Path'), - '#description' => $this->t('This view will be displayed by visiting this path on your site. You may use "%" in your URL to represent values that will be used for contextual filters: For example, "node/%/feed". If needed you can even specify named route parameters like taxonomy/term/%taxonomy_term'), + '#description' => $this->t('This view will be displayed by visiting this path on your site. You may use "%" or named route parameters like "%node" in your URL to represent values that will be used for contextual filters: For example, "node/%node/feed" or "view_path/%". The named route parameters are required when used within paths used by entities such as "taxonomy/term/%taxonomy_term" or "user/%user/custom-view".'), '#default_value' => $this->getOption('path'), '#field_prefix' => '' . Url::fromRoute('', [], ['absolute' => TRUE])->toString(), '#field_suffix' => '‎',