Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Paul Massendari Regular
Grav Forum Moderators
@paul · Joined 9 years ago · 143 posts · 0 topics · 53 reputation
Badges
Recent posts
-
Users access log
· 8 years ago
The revision plugin will keep a track of each change. might be a good fit for you?
-
Custom page creation modal in Admin
· 8 years ago
Page creation modal functionality is very limited as i understand? It’s just a modal to create a page? Can’t set custom field values using it? Only in a page blueprint? Yes, at least for now
-
Custom page creation modal in Admin
· 8 years ago
no, you just use the template name, without the .html.twig extension example: mytemplate.html.twig -> mytemplate blog-article.html.twig -> blog-article If i do this in a blueprint, then all new
-
Custom page creation modal in Admin
· 8 years ago
Template selection via custom page creation modal is selected with the name. So if you want to use the sometemplate.html.twig template you would have to use name: type: hidden default: 'sometempla
-
How to implement dynamic page loading
· 8 years ago
I think the easiest implementation with Grav would be to use a library such as barbajs: http://barbajs.org/ Basically, you just add an id to the part of the html that will change between each page, an
-
Applying CropResize to background image URL
· 8 years ago
What is this entry exactly? If this refers to a page, you have to add media to it, exempla {% for entry in page.children %} {% for image in entry.media.images % <div class="projectimage" style="bac
-
Displaying images from pages/images
· 8 years ago
It's probably because you did not add an md file to your /pages folder. If you want to get the page object (which contain media) of another page, an md file is required. This should solve your problem
-
What's the purpose of modular pages at all?
· 8 years ago
Hi lbc, Reusing modular content is simply done by calling page.content, or if from another page: {{ page.find('/yourmodularpage/_yourmodule').content }} Keep in mind that this will display the whole
-
What's the purpose of modular pages at all?
· 8 years ago
I mostly use modular pages when I have portion of content that will be repeated on several page, or on pages that would require too much field on a single page. If you take a look at the homepage of h
-
Using PageMediaSelect Custom Field in Template
· 8 years ago
Btw, just note that pagemediaselect is not used anymore and maintained, it is recommended to use instead the filepicker field.