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.

Andy Miller Grav Creator

Grav Core Team Grav Forum Moderators

@rhuk · Joined 9 years ago · 335 posts · 28 topics · 183 reputation

Badges

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

Recent posts

  • Video Gallery / Video Portfolio · 9 years ago

    Not really following you. if you have a video file in your frontmatter, then just putting: ![](yourvideo.mp4) Would be enough to render a simple <video> tag

  • Maximum size for image in FeatherLight lightbox · 9 years ago

    Yes, I think that an update to featherlight plugin is in order. I'll try to get to that soon.

  • Grav on Heroku || Permission denied · 9 years ago

    Did you follow this Heroku guide? https://learn.getgrav.org/webservers-hosting/paas/heroku

  • Website is very slow in spite of grav core feature (crazy fast..) · 9 years ago

    It doesn't come with a control panel ala CPanel. Serverpilot lets you do the basics like create vhosts, enable SSL, pick PHP version etc. The rest you would need to do directly on the server or via

  • Website is very slow in spite of grav core feature (crazy fast..) · 9 years ago

    Regarding linode and databases... A VPS at linode is a bare Linux machine. You have root access to it and can install any software you wish including MySQL or mariadb. You can also create as many DBs

  • Grav bug has broken our site · 9 years ago

    Nothing has changed regarding page media handling that I can think of.

  • Shopping Cart detail view more photos · 9 years ago

    @flavio is the author of the shoppingcart pluign, perhaps he can help you out.

  • New mediapicker field from v1.5.0-rc.3 · 9 years ago

    Going to note down the fact that we need to document it. In the meantime, here's an example of how it's used: header.image: type: mediapicker folder: 'self@' label: Select a file preview_imag

  • Markdown links stripping trailing slash · 9 years ago

    I'm not sure there's any benefit of having trailing slashes. When I did a quick search it basically turned up people saying you need to be consistent, either use slash or don't at the end, other than

  • Find Media outside Page · 9 years ago

    @AWRog: {% for image in page.find(’…/img’).media.images %} Should be: {% for image in page.find(’/img’).media.images %} Because the find() method expects a full page route.