Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
Learn2 Page Nav Not Working Correctly
· 10 years ago
I found the answer ... for the Previous and Next arrows to work on each page the current page AND the Proceeding/Following pages MUST be associated with the "docs" category.
-
Learn2 Page Nav Not Working Correctly
· 10 years ago
As I create/add new pages, the left (previous page) and right (next page) arrows on each chapter and docs page of the Learn2 theme are not going back or forward to the next page in the menu, and some
-
Delete cache entry
· 10 years ago
Yup, you worked it out already :) We hope to bring some smarter cache clearing strategies to Grav this year. It's a bit more complex than it sounds because there are implications of a config change h
-
Delete cache entry
· 10 years ago
Solved it by using: $cachedriver = $this->grav['cache']->getCacheDriver(); $cachedriver->save($cacheid, $cacheoutput); instead of $cache = $this->grav['cache']; $cache->save($cacheid, $
-
Delete cache entry
· 10 years ago
Is it possible to delete a single cache entry? I'm using $cache->save($cache_id, $cacheoutput); to save cache, and I want to be able to delete specific cache entries. (Deleting all cache is far to
-
Custom order modular pages in admin
· 10 years ago
Was slightly misled by the reply above by flaviocopes then. Thanks for confirming!
-
Custom order modular pages in admin
· 10 years ago
You should lowercase all of those. All the examples have all those YAML variables lowercase.
-
Custom order modular pages in admin
· 10 years ago
It's working now, seems I had to add Dir: asc nested under Order: to have the desired effect. That or the capitalization on Title (instead of title) was messing it up. Odd.
-
Custom order modular pages in admin
· 10 years ago
Order: By: Folder is working as expected, but if I set parent to Content: Order: By: Title The modular sub-pages do not re-order themselves (their titles are 01 page, 02 page).
-
Custom order modular pages in admin
· 11 years ago
Ok, thanks.