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

Paul Hibbitts Regular

@paulhibbitts · Joined 9 years ago · 458 posts · 2 topics · 108 reputation

Badges

✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Split Navigation Menus for Footer · 7 years ago

    Hi @fatbuddhadesigns, sorry that I misread your question🙂 try this: {% if not (page.visible) %} BTW, to display code here in the forum use three backticks in a row - for example: {% if not (page.visi

  • Split Navigation Menus for Footer · 7 years ago

    Hi @fatbuddhadesigns, this is not tested but this should provide a for loop with only visible pages: {% for page in pages.children.visible %} I hope the above is helpful. Paul

  • Static code analyzer for grav and admin plugin · 7 years ago

    Hi @lahar , might find this info helpful: https://learn.getgrav.org/16/security/overview

  • Activating sidebar in afterburner2? · 7 years ago

    Great that you got it going @samemiki ! Looking at the Afterburner2 theme, the text widget in the sidebar is actually set within the Twig file: https://github.com/getgrav/grav-theme-afterburner2/blob/

  • Activating sidebar in afterburner2? · 7 years ago

    Welcome @samemiki! Try the following out to see if you can get a sidebar going: 1) download the Blog Site skeleton (https://getgrav.org/download/skeletons/blog-site/2.0.0) 2) install afterburner2 them

  • Agency skeleton: How to change site title to custom logo · 7 years ago

    That does not seem to be supported by that theme currently @WhiteWolfSix, you would need to write some custom Twig for that (with first making an inherited theme https://learn.getgrav.org/16/themes/cu

  • Agency skeleton: How to change site title to custom logo · 7 years ago

    No problem @WhiteWolfSix🙂 What you need to do is edit the file site.yaml in your Grav site folder /user/config/ and change the field title: from Grav to the name that you want for the site - is that a

  • Agency skeleton: How to change site title to custom logo · 7 years ago

    Hi @WhiteWolfSix, I have not used that theme myself but it looks configurable in the site.yaml file in your /user/config/ folder: https://github.com/getgrav/grav-skeleton-agency-site/blob/develop/conf

  • How showing taxonomy catagory on a page · 7 years ago

    Hi @walk, here is an example of displaying tags in the Bootstrap4 Open Matter theme: https://github.com/hibbitts-design/grav-theme-bootstrap4-open-matter/blob/master/templates/partials/blog_item.html.

  • How to edit partials from admin panel as page? · 7 years ago

    BTW @01K, what was the final Twig you used?