Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Vadym Member
@b.da · Joined 4 years ago · 90 posts · 0 topics · 26 reputation
Badges
Recent posts
-
Setting Password Requirements
· 2 years ago
Hi, @EricAiken, you can set it via admin panel Configuration > System > Advanced > Password Regex (Miscellaneous Section) or directly in the user/config/system.yaml file (pwd_regex variable)
-
Load and Save custom.css from panel admin
· 2 years ago
I use a simpler approach. Hopefully it will work for you and benefit the community. Similarly, you can include JavaScript code. <details> <summary>1. theme blueprints.yaml</summary>
-
Load and Save custom.css from panel admin
· 2 years ago
Hi, @pmoreno, can you clarify the scenario?
-
"directorylisting" want render correctly
· 2 years ago
Hi, @habreli and welcome, use raw twig filter, in your case it would be {{ directorylisting|raw }}
-
All page with 404 redirect to homepage
· 3 years ago
Hi, @SupaVlad, you can try the following: make sure the error plugin is enabled create a page template in your theme callederror.html.twig put this code {% if http_response_code(404) %} {{ redire
-
[typhoon] How to add Mastodon to socials in footer
· 3 years ago
Hi, @acmartinsalmeida, all that's left to do in your case is just add some CSS .bg-mastodon { background-color: #6364FF; }
-
Weird behaviour on modular Recent Posts template (Editorial Theme)
· 3 years ago
Hi, @pmoreno, you can use blog.children.published.order('date', 'desc').slice(0,limit) in the first case. Read this issue on github, you should probably get some clarification.
-
Having problems specific page group access, need some help
· 3 years ago
Hi @Japhy , take a look at the first part of the post below - I think it's what you need. so, you need to register a new permission in group configuration, set Site YourPermission to Allowed on the P
-
Can't link page with taxonomy from admin panel
· 3 years ago
Hi, @FrosticZ internal link must start with a slash [](/page/param:foo) it seems that the param value must contain at least one non-numeric character in this case Consider using an extra character
-
Help with array_unique function
· 3 years ago
Hi, @simfin, based on your example {% set years = [] %} {% for page in pages.children.visible.order('date', 'desc') %} {% set years = years|merge([page.date|date('Y')])|array_unique %} {% endfor %