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

Muut Archive Legend

@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation

Badges

✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Image link needs to open page · 10 years ago

    Prevent hotlinking of images, though I am unsure of conflicts between Grav and such a solution.

  • Image link needs to open page · 10 years ago

    Yeah, that answer would be normally applicable because i didn't asked my question correctly enough.... So not quite what i was looking for.. I'm searching for some kind of preventing 'hot-image leechi

  • Image link needs to open page · 11 years ago

    Change the href to the destination you need, and remove any references to lightbox or featherlight

  • Image link needs to open page · 11 years ago

    Is there a way of opening the page, when only the link to an image is available?

  • Plug-ins, Listing Page · 10 years ago

    Plugins are generally activated on installation. You don't need to manually 'activate'. You can however disable if you wish. This is either by overriding the plugin config with a user config file,

  • Plug-ins, Listing Page · 10 years ago

    Hello everyone! Please tell me how to activate plugins? Tell me how to make Listing Page? I have included markdown. thanks

  • reCaptcha form in footer for every page · 10 years ago

    I suggest adding an issue on the plugin's repo: https://github.com/aradianoff/recaptchacontact/issues

  • reCaptcha form in footer for every page · 10 years ago

    Hello, I first tested with simple-contact and that worked fine until the part where I need a token key from Simple form (https://getsimpleform.com/) and it does not work. Nor there is any information

  • Getting all pages + subpages · 10 years ago

    Added collection to the pages header content: items: '@root.descendants' and then added this to my template file <ul> {% for post in page.collection.order('date', 'desc').slice(0, 5) %}

  • Getting all pages + subpages · 10 years ago

    Have a look at the Pages Object, it allows access to all Grav pages and you can iterate over them to create the desired output. Get the top-level pages for a simple menu (from the documentation): &lt