pamtbaau Legend
Grav Forum Moderators
@pamtbaau · Joined 8 years ago · 3196 posts · 17 topics · 1020 reputation
Badges
Recent posts
-
3-column content on blog page with Quark theme?
· 8 years ago
I haven't looked at the internals of 'bricklayer.js' but my guess is: it looks for the width of .bricklayer it looks for the width of .bricklayer-column-sizer it divides the two and you have the numb
-
Page.find fails only on custom route
· 8 years ago
Wat is your folder structure? I do use a custom route and 'page.find()' works properly when using the right folder path.
-
Uploaded Media with CAPITALIZED extension not found in Header Image dropdown
· 8 years ago
@ccagle8 Have been able to reproduce the issue. I have looked at the source code but did't find a pointer... Considering the lack of responses, maybe when you log an issue at GitHub you might find mo
-
Page.find fails only on custom route
· 8 years ago
@npetri Is '/_footer/links' located at the top level of folder '/user/pages'? Like '/user/pages/_footer/links'. page.find('/...) Starts searching for a page from the root of the pages folder. When I u
-
3-column content on blog page with Quark theme?
· 8 years ago
@marcocevoli Add the following to your favourite file where you tweak Quark's style: @media screen and (min-width: 980px) { .bricklayer-column-sizer { width: 33.3%; } } I recognise you
-
Inheritance of getgrav-logo svg in Quark theme?
· 8 years ago
A few things I could think of: Have you changed the theme in 'system.yaml' from 'quark' to 'mytheme'? Have you copied the file '/user/themes/quark/templates/partials/base.html.twig' to '/user/themes/
-
[SOLVED] How to generate fake url /item-XXX or item/XXX for the same page?
· 8 years ago
Nice! May I add just one last nitpick? @nicolasG: $parts = explode('-',$this->grav['uri']->path()); This line is not really necessary. You can reuse $this->annonceId, which has been assigne
-
How to set header image in grav blog page
· 8 years ago
If you don't know how you did it... then it is time to start studying the docs... ;-)
-
[SOLVED] How to generate fake url /item-XXX or item/XXX for the same page?
· 8 years ago
@nicolasG: $this->page = $this->grav['page']; On a guick glance... Have a look at the Lifecycle of Grav. You can see that event 'onPluginInitialized' comes before 'onPagesInitialized', hence $t
-
[SOLVED] How to generate fake url /item-XXX or item/XXX for the same page?
· 8 years ago
Have a look at this sample which is only part of the solution.... Of course you need to adjust to your own needs and add extra required checks... <?php namespace Grav\Plugin; require_once __DIR__