pamtbaau Legend
Grav Forum Moderators
@pamtbaau · Joined 8 years ago · 3197 posts · 17 topics · 1020 reputation
Badges
Recent posts
-
Where to change 'Thank you' message
· 6 years ago
@daredevil, In the form.md file that defines the email form...
-
Where to change 'Thank you' message
· 6 years ago
@daredevil, Did you have look at the definition of the form in the frontmatter of the page?
-
Taxonomy list returns nothing
· 6 years ago
@normawhite, To clarify: In your fresh copy of the 'Site Blog' skeleton, without making any changes, 'Popular Tags' is showing tags, but 'Archives' is empty?
-
Strip HTML from Form textarea field such as Email message
· 6 years ago
@squirrel, I can think of two avenues: Field validation using Regex: Add a validation to the field which will fail when its content contains an anchor. A simple example: validate: type: textarea patt
-
Set Page Frontmatter Variable via Form
· 6 years ago
@hoernerfranz, I wonder what the use-case is for this question.... Anyway, I could think of creating a plugin that responds to the form's onFormProcessed event, checks the user action defined for the
-
Taxonomy list returns nothing
· 6 years ago
@normawhite, Haven't been ably to replicate your issue... new_base_url: Don't worry about that, the value is only used to set the url of each category. It has no impact on the display of categories in
-
How can i add all images in a blog post using twig syntax?
· 6 years ago
@d3s1gn3r, See Twig documentation on the loop variable: Variable Description loop.index The current iteration of the loop. (1 indexed) loop.index0 The current iteration of the loop. (0 indexe
-
How can i add all images in a blog post using twig syntax?
· 6 years ago
@d3s1gn3r, To list all images in the folder of a page, try the following in your Twig template: {% for image in page.media.images %} {{ image.html }} {% endfor %}
-
Add readingtime to each blog item in blog list
· 6 years ago
@marcocevoli see my answer above...
-
Add readingtime to each blog item in blog list
· 6 years ago
@marcocevoli And where is snippet {{ page.content|readingtime }} ? If it is used in this template, it should probably be {{ child.content|readingtime }}