Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Werner Joss Regular
@hoernerfranz · Joined 7 years ago · 224 posts · 14 topics · 49 reputation
Badges
Recent posts
-
Newbie question, use a plugin
· 7 years ago
page content is usually just what you write AFTER the frontmatter section. you see it just as text on your website. and no, templates are not frontmatter, they are a mix of html and twig template lang
-
Newbie question, use a plugin
· 7 years ago
frontmatter is the head of your markdown page, all between '--- title:XYZ .... and '--- the format for frontmatter is yaml just copy this text and save it as form.md in your form page folder.
-
Newbie question, use a plugin
· 7 years ago
Plugins in Grav mostly work through Templates or shortcuts. or special markdown Files with extra header (=frontmatter). As for contact Forms, take a look at the forms dokumentation - this should get
-
Migrating my Wordpress Site to Grav
· 7 years ago
you're welcome, Paul, no problem 😃 Usually, I write up my experience with new projects as a reference for myself, but also in case someone with similar plans can use this, is always a good thing.
-
Is there a way to really extend functionality?
· 7 years ago
I'm not sure if I understand correctly what you want to do, but I think it is: have a form where you can put in personal data (name....) this form should only be visible/usable by logged in admin upo
-
Automate user creation to use with Docker
· 7 years ago
you can create a user file (with hashed or cleartext password, as Paul already mentioned) before and then just copy that into the docker container (use 'docker cp' command for that). Or, even easier,
-
Migrating my Wordpress Site to Grav
· 7 years ago
Ok, migration is now done, see Goodbye Wordpress, Hello Grav - a rather complete Description what had to be done. And no, I did not (yet) delete the old WP Site, just moved it out of the way (at least
-
Set Variable in Twig Extension Class
· 7 years ago
ok, solved 😉 I had to: create new TwigExtension Object $ext set desired variable Value then add Extension: $this->grav['twig']->twig->addExtension($ext); -> ok.
-
Set Variable in Twig Extension Class
· 7 years ago
I'm currently writing a Plugin which parses an ics (calendar-) File and creates an events list which is made available via a twig variable, according to https://learn.getgrav.org/15/cookbook/plugin-re
-
How to install a library in a custom plugin?
· 7 years ago
Hi myscha, I'm currently thinking about doing the same as you described here: writing a Plugin to display Events from ics File(s) 😀 . so, short question: is your Plugin finished/working ? and, if so,