Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Chris Jung Regular
ModSquad Team Member
Grav Forum Moderators
@chris_jung · Joined 9 years ago · 102 posts · 6 topics · 24 reputation
Badges
Recent posts
-
Grav Deploy Best Practice
· 9 years ago
This is my way to deploy: #!/bin/bash USER=USER_NAME SERVER=SERVER_NAME DOMAIN=DOMAIN_NAME rsync --delete -rvzce ssh . ${USER}@${SERVER}:/homepages/${USER}/${DOMAIN} \ --exclude /.git \ -
-
How to redirect pages with php extension in GRAV
· 9 years ago
Another way would be to extend the .htaccess file to redirect every .php file to achieve this.
-
Rotate background image
· 9 years ago
Create a child theme and overwrite /templates/partials/header.html.twig in your child theme. .home-header-bg { background:url( '{{ theme_url }}/img/{{ site.header.background }}' ) #ffffff no-repeat
-
Access parent page property recursively
· 9 years ago
Nice solution, thanks for sharing.
-
Trouble with LinkedIn and Wayback Machine page indexing
· 9 years ago
Can you please link the Issued here.
-
Grav Deploy Best Practice
· 9 years ago
I build local and have an ssh script that clears caches on the target after rsyncing.
-
How can i add anchor link in form label?
· 9 years ago
Maybe changing {{ field.label|t|e }} to {{ field.label|t }} helps.
-
How can i add anchor link in form label?
· 9 years ago
Maybe you need to overwrite user/plugins/form/templates/forms/fields/checkbox/checkbox.html.twig in your child theme. There is an escaping for the field labels.
-
Changing Site URL on Apache
· 9 years ago
You can check your .htaccess that the Part RewriteBase / is used.
-
Disabling the date display from blog post
· 9 years ago
This should be done in a child theme then. Just copy over the template to your child theme with keeping the path to the template. When overriding antimatter/templates/partials/blog_item.html.tiwg. yo