Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
mikael Member
@procrates · Joined 9 years ago · 64 posts · 9 topics · 16 reputation
Badges
Recent posts
-
Store and read data in grav
· 9 years ago
A good way to learn how Grav works is to look at existing code, especially Grav team plugins. I know the form plugin can store data in the user/data folder Grav form plugin github line 4 But I am sure
-
Alternate Nav Image depending on page
· 9 years ago
The mitem is basically if you want some custom links like external links or register link. You can add them is user/config/site.yaml with: menu: - title: url: {{ for page in pages... }} is the
-
Disabling the date display from blog post
· 9 years ago
No problems! @chris_jung is also right about the child theme. It did not occur for me to write it because it's something that always exists in every situation where you have to override script that is
-
Get form data select input and add it to page frontmatter
· 9 years ago
So I have gotten a bit further... I have no idea how I got this far, how did $result = $form->value()->toArray(); know I wanted to get the selected option from this form?: - name: taxonomy
-
Get form data select input and add it to page frontmatter
· 9 years ago
Hey:) I am using Add page by form plugin for users to add custom content to a site. Now I am working to add taxonomy to the added page frontmatter by being able to select a category from a select fi
-
Conflict between tntsearch and bootstrap
· 9 years ago
Thanks :) Will probably be and easy fix!
-
Grav Deploy Best Practice
· 9 years ago
composer.json file (which downloads everything Grav requires and installs Grav) and .dependecies (which is Grav plugins and themes which are installed when composer.json has run). Composer has its own
-
Grav Deploy Best Practice
· 9 years ago
You do not install the Grav plugins with composer, you rather store them in composer.json and do a composer install on new instances. This will just download the plugins and dependencies. Was not thi
-
Grav Deploy Best Practice
· 9 years ago
I have not found any step-by-step guide to do this yet. But it is not as complicated as it sounds, everything is basically done with composer and GIT unless you are more than one person developing, th
-
Grav Deploy Best Practice
· 9 years ago
There are many possibilities for development and deployment for Grav, including composer. GPM is not necessary since all dependencies can be stored in composer.json. And deployment can be done with gi