Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
Best way to hide "hero" image on detailed view?
· 10 years ago
Thanks Perlkönig I had not read the inheritance section, I have created my inherited theme will be easier to keep things updated.
-
Best way to hide "hero" image on detailed view?
· 10 years ago
Glad you solved your problem. It's wise to follow the instructions I linked to above and separate your changes into a new theme that inherits the old one. That way when the theme gets updated, you don
-
Best way to hide "hero" image on detailed view?
· 10 years ago
Thanks. having a deeper look, I now see my misunderstanding. I was believing that the image was coming from page.content but in face it was above in the theme. If that can interest someone, I have cha
-
Best way to hide "hero" image on detailed view?
· 10 years ago
Just edit the twig file to remove the image. https://learn.getgrav.org/themes/customization
-
Best way to hide "hero" image on detailed view?
· 10 years ago
On my blog, using Future theme, I like the way Grav is displaying a big picture on each post on the list post page, but when arriving on a detailed blog post I find it weird that almost the same image
-
Get a List of all taxonomy items of a certain kind
· 10 years ago
I found it myself. You can get every entry of a certain taxonomy via twig. ---twig {% for tag in page.taxonomy.tag %} <a href="search/tag:{{ tag }}">{{ tag }}</a> {% endfor %}
-
Get a List of all taxonomy items of a certain kind
· 10 years ago
Hi there, i want to read all existing entries of the taxonomy "country". Can somebody help me please? Regards, Michael
-
Override form.html.twig without using theme's override file
· 10 years ago
The solution is so simple. My page's Twig file: {% include "forms/contact.html.twig" with { form: forms('contact-form') } %} In forms/contact.html.twig: {% extends 'forms/form.html.twig' %} {% block
-
Override form.html.twig without using theme's override file
· 10 years ago
My task is pretty simple. I just need to change "buttons" class in "inner_markup_buttons_start" block in form.html.twig of Form plugin (2.0.5) to my own class. {% block inner_markup_buttons_start %}
-
Implement blog in learn 2 theme
· 10 years ago
i know its not designed for blogs, but if manual alterations can achieve what iam looking for then that would make it a killer theme :P I believe it could be done just need some experts guidance.