pamtbaau Legend
Grav Forum Moderators
@pamtbaau · Joined 8 years ago · 3183 posts · 17 topics · 1019 reputation
Badges
Recent posts
-
[Agency] Reset Button on Contact form
· 5 years ago
@citoyencandide, Since I never used a reset button, the observed behaviour of the Reset button didn't ring a bell to me... After some Googling it appears to be the standard behaviour of the <input
-
[Agency] Reset Button on Contact form
· 5 years ago
@citoyencandide, Apart from the issue you are experiencing, you might consider if a Reset button is good UX. According to MDN on <input type="reset"> You should usually avoid including reset b
-
Agency - Service in markdown
· 5 years ago
@citoyencandide, Ok, in that case, ftp-ing system.yaml (or any other config file) over to the server, might cause a cache invalidation too. But Admin works fine too of course.
-
Agency - Service in markdown
· 5 years ago
@citoyencandide, keep in mind, that i do not host myself the server, so i should use the admin panel to clear the cache. That makes me wonder how you edit custom.css and Twig files...
-
Agency - Service in markdown
· 5 years ago
@citoyencandide, Grav is fast because it caches parsed pages and Twig. Therefor, you need to run $ bin/grav cache to clear the cache when things have changed when Grav doesn't know about it. A change
-
[Agency] Issue changing pictures and other things with Inherited method
· 5 years ago
@citoyencandide, still strugling with the map-image in the background of contact/form If you open de devtools in the browser and inspect the element containing the image, you will find in the css in
-
[Agency] Issue changing pictures and other things with Inherited method
· 5 years ago
@citoyencandide, Try the following inside custom.css: section#contact h2 { color: red }
-
Help with Grav lifecycle: can't get content generated from twig?
· 5 years ago
@Netzhexe, I can’t modify content generated by a twig template via plugin in a way that gets cached. Yes? That's correct, unless I stand corrected.. The way I see it, is that Grav caches the results
-
[Agency] Issue changing pictures and other things with Inherited method
· 5 years ago
@citoyencandide, Change header image: The image is set in css and is a relative url : url(../img/header-bg.jpg). Relative to the css file in which it is used. Fix: In your inheriting theme, create fi
-
How get all pages in plugin for admin
· 5 years ago
@danielkoptak, Ough, an oversight of a simple ! if (!$this->isAdmin()) { return; } In that, case I stand corrected, your code does work.