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.

pamtbaau Legend

Grav Forum Moderators

@pamtbaau · Joined 8 years ago · 3129 posts · 12 topics · 1011 reputation

Badges

Grav Core Team ModSquad Team Member ✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Quark theme's language · 8 years ago

    @obeliksz I have downloaded the skeleton and tried the following: In '/user/config/system.yaml' added Hungarian (hu) to the list of supported languages. languages: supported: - hu In '/user/confi

  • Get html in plugin · 8 years ago

    @finanalyst After some digging using the debugger, I found a variable 'output' in the object tree of '$this->grav'. This variable 'output' contains HTML. With some trial and error I finally found i

  • Photographer menu/submenu · 8 years ago

    @antoine0579 The macro loop Looking at navigation.html.twig... <ul class="nav sf-menu"> {% if config.themes.photographer.dropdown.enabled %} {{ _self.loop(pages) }} ... we see that

  • Plugin Comments not working · 8 years ago

    @codiergott The values for '$path | $route' are written to the console. In your case: /techwiki/sonstiges/dyndns-domain-mit-ssl-support-auf-einer-fritzbox-einrichten | /blog '/techwiki/sonstige

  • Possible to get Date value in form field? · 8 years ago

    @thejame Have a look at Using Function Calls (data-*@) Below is a working example. I have done the following to get 'now' as default value in the Admin page of my plugin. Create new plugin $ bin/plu

  • Plugin Comments not working · 8 years ago

    @codiergott Apparantly, the variable 'enable_comments_plugin' is not set. This variable is set in 'comments.php' line 76: $this->grav['twig']->enable_comments_plugin = $this->enable; The var

  • Plugin Comments not working · 8 years ago

    @codiergott Comments plugin uses the following code to test if comments should be shown: if (!in_array($path, $disable_on_routes)) { if (in_array($path, $enable_on_routes)) {

  • Plugin Comments not working · 8 years ago

    @codiergott If the route of the page on which you want to add comments does not start with '/blog', you need to add that route in 'user/config/plugins/comments.yaml' like: enable_on_routes: - /blog

  • Taxonomy searches give no results · 8 years ago

    @Cylindric Just had to have a second look... The multiple blogs issue can be 'worked around' by using the following: Override Quarks partial template 'taxonomy.html.twig' in 'user/themes/mytheme/temp

  • Taxonomy searches give no results · 8 years ago

    @Cylindric I haven't worked with blogs yet, but did some investigation. Theme Quark needs the variable ‘blog-page’ to point to the correct blog page. To fix the issue mentioned above, copy 'user/theme