Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

General

Can't create form in a modular which is inside a modular page

form plugins

Started by César Aguirre 6 years ago · 5 replies · 722 views
6 years ago

You have to put form definition into page's frontmatter (header), not into content itself. You have select "advanced editor", or edit the file manually.

6 years ago

@MakaryGo, Did you perhaps mean:

  • In Admin panel
  • Select 'Expert' mode
  • Select 'Content' tab
  • Edit frontmatter/header in field 'Frontmatter'

image|690x295

6 years ago

Precisely. On the above screen it was clearly in the content block itself.

6 years ago

@Yourdead, As you have, I have followed the documentation on How to: Forms in modular pages.

Using fresh Grav 1.6.26 installation using theme Quark.

I have the following folder structure:

TXT
pages
├── 01.home
│   └── default.md
├── 02.typography
│   └── default.md
└── 03.modular1
    ├── _module1
    │   └── text.md
    ├── _module2
    │   └── form.md
    └── modular.md

Page '/03.modular1/modular.md' contains:

YAML
---
title: Modular1
content:
  items: '@self.modular'
---

Page '/03.modular1/_module2/form.md' contains:

YAML
---
title: Module 2
cache_enable: false
form:
  action: /modular1  <-- Use route to modular, else 'Thank you' will break
  name: my-nice-form
  fields:
    - name: name
      label: Name
      placeholder: 'Enter your name'
      autofocus: 'on'
      autocomplete: 'on'
      type: text
      default: test

  buttons:
    - type: submit
      value: Submit

  process:
    - message: 'Thank you for your feedback!'
---
# Module 2

I made no other changes and did not copy any files.

The form is now correctly shown in module '/03.modular1/_module2/form.md'

last edited 07/21/20 by pamtbaau

Suggested topics

Topic Participants Replies Views Activity
General · by Jerry Hunt, 3 days ago
2 70 5 hours ago
General · by pamtbaau, 10 hours ago
1 45 9 hours ago
General · by Andy Miller, 22 hours ago
0 43 22 hours ago
General · by Marcel, 12 months ago
6 341 4 days ago
General · by Duc , 5 days ago
3 35 5 days ago