Karmalakas Veteran
@Karmalakas · Joined 6 years ago · 1180 posts · 28 topics · 215 reputation
Badges
Recent posts
-
New page alignment issues
· 5 years ago
Are you copying content from Word or similar app? What's your new page content?
-
WebP images do not show up
· 5 years ago
@luap: I hope support for this feature comes in the future I hope not :) Webp is a completely different image format with different algorithm. It's not a version of an image, but rather a completely
-
Is uri.query() not working on static pages without php?
· 5 years ago
Oh I see :) My guess... uri.route is taken from Grav core where it parses page structure and frontmatter of each page to get slugs and what not. uri.query most likely taken from GLOBALS (probably $_RE
-
Error 500 on VPS server
· 5 years ago
What do server logs say?
-
Is uri.query() not working on static pages without php?
· 5 years ago
I thought PHP is requierd for Grav to work at all 😕
-
Plugin update after grav 1.7.6 update gives error
· 5 years ago
I suppose one of your plugins/themes use the noscript template. Admin changelog states Removed noscript template, because 2021... One way, is to search through plugins and themes to find what uses
-
Blueprint type: list new data on top of array
· 5 years ago
Admin 1.10.4 has the feature. Check List field placement property description
-
Using images with Flex-objects
· 5 years ago
In my custom flext-objects blueprint I have config and image field as: config: data: storage: class: 'Grav\Framework\Flex\Storage\FolderStorage' options: folder: user-data://
-
Hyphenize tags containing spaces, per page in collection
· 5 years ago
That's because you're looping through {% for child in page.children %} no matter which page you're on. You should change that to {% for child in p.children %}, because you're inside another loop now a
-
Hyphenize tags containing spaces, per page in collection
· 5 years ago
Assuming your page children have taxonomy.tag defined, you should be fine