Hugh Barnes
Hugh Barnes
The file field template [adds the same CSS and JS for every file upload field](https://github.com/getgrav/grav-plugin-form/blob/7c8ecd9e14f26ec0dad30e0d655382c4aaafdad3/templates/forms/fields/file/file.html.twig#L101), so a form with several of these has unnecessary repetition. I experimented with moving the...
My use case is that I am requesting a set of name and date-of-birth pairs, so an Array type field won't suffice. I've tried to hack this up based on...
I'm trying to create an email body like: ```yaml body: "Thank you for your message via my website. Here is a copy for your records:\n\n{% include 'forms/data.txt.twig' with {'hide_fields': ['ip',...
I noticed the logic for showing labels using `show_label` isn't implemented as early as it should be. This means when labels aren't being shown, you still get the label wrapper...
I was going to submit a PR until I realised the deprecation warnings I am seeing originate with included vendor code, which you may want to update by another process...
I noticed the plugin's proxy URL was blocked by my webserver rules. It seemed like a problematic path anyway. So replaced the proxy path to `/_cors/proxy` by default (2b46aa3) and...
One of the ways I create reproduceable builds these days is by using a `.dependencies` file in every Grav repo and running `docker exec -u xyz container-name bin/grav install` on...
I've been trying to convert a site I inherited's URLs to lose their `.php` extension using your image. Two variations of rules I have tried result in 404s in the...
I have a multisite setup using the subdirectory option. The activation URLs generated in the activation emails do not include the site path after the hostname. I notice in [`Login::sendNotificationEmail()`](https://github.com/getgrav/grav-plugin-login/blob/eb1ab76a13e03878c9af5fe038774cfec2773829/classes/Login.php#L373)...
This description confuses me, could you explain it more clearly please? `admin_pages_only: true|false toggles if admin should only process shortcodes for Grav pages` Is this related to previewing pages or...