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.

Geroge Stamoulis Newcomer

@Stamoulohta · Joined 7 years ago · 3 posts · 1 topics · 0 reputation

Badges

✏️ First Post 💬 Conversation Starter

Recent posts

  • How do i select all tags in my twig template in grav? · 7 years ago

    Don't want to necro but the actual solution is : <ul> {% for animal in taxonomy.getTaxonomyItemKeys('tag') %} <li>{{ animal }}</li> {% endfor %} </ul>

  • Access POST variable inside plugin · 7 years ago

    Unfortunately the problem was in my request implementation 🙄 Thanks for taking the time to answer though.

  • Access POST variable inside plugin · 7 years ago

    Is there a way to access the $_POST variable from within a plugin? I don't want to use the official forms plugin just for one simple task... I've tried $this->grav['uri']->post() because I saw i