Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Paul Hibbitts Regular
@paulhibbitts · Joined 9 years ago · 458 posts · 2 topics · 108 reputation
Badges
Recent posts
-
Adding page in Admin: Change default to blog & item
· 9 years ago
I have not found any way to change the default parent page except to modify the YAML for the Admin Panel plugin, but this change can be lost when updating the Admin😕 Here is an example where I changed
-
Adding page in Admin: Change default to blog & item
· 9 years ago
Hi @endogen, you can set the default child page type for page, which should help you out a fair bit. In the page frontmatter of your Blog Markdown file, add the following: child_type: item The above
-
Content that goes again on several pages
· 9 years ago
You might find the Page Inject plugin handy for this - https://github.com/getgrav/grav-plugin-page-inject
-
Hide Home in navigation menu
· 9 years ago
Hi @gravus, to use the visibility option you would add this setting to the page frontmatter of the Markdown page which is your homepage. If you are using the Admin Panel visible is usually a setting o
-
Make Certain Fields Visible to Only Logged in Users
· 9 years ago
Awesome, so glad you got it working. Grav is brilliantly designed, and the use of Twig opens up customization possibilities for a lot more people (including myself, I am not a 'dev')🙂
-
Make Certain Fields Visible to Only Logged in Users
· 9 years ago
Hi @tmilktoast, perhaps this post might help? /forum/archive/display-in-menu-only-if-logged-in-t7073
-
Get a collection of all "CHILDREN" but only with a special "TAG"
· 9 years ago
I do a similar thing to find all 'featured' posts, here is my Twig: {% for post in taxonomy.findTaxonomy({'tag': "featured"}) %} {% include 'partials/blog_item.html.twig' with {'page':post, 'truncate
-
Hide a certain modular subpage from the navigation bar
· 9 years ago
Awesome, great to hear you found a solution!
-
Hide a certain modular subpage from the navigation bar
· 9 years ago
Hmm... I thought that would have worked, what theme are you using? Did you clear the cache after trying the setting? By 'modular subpage' what exactly do you mean? Here is more info from the docs: htt
-
Hide a certain modular subpage from the navigation bar
· 9 years ago
Try visible: false in the page frontmatter? If you are using the Admin Panel this option is also available when editing a page.