Blog
Fixing CORS issues with decoupled drupal
A common issue is CORS errors when testing on a local environment on decoupled installations. This will guide you into fixing it.
Blog
Getting an Angular PWA service worker installed on localhost
Service workers are meant to run on production builds over https. But we want to test on localhost.
Blog
Troubleshooting tailwindss + postcss + angular
I stumbled upon some annoying errors setting up Tailwind and Angular. These snippets might fix things.
Blog
Get site name programmatically in drupal 8 & 9
This configuration setting is easy to get with the following snippet.
Blog
Render a button in drupal 8 & 9 with a render array
Render arrays are great for styling elements to keep consistency across future updates. Today: buttons.
Blog
Check if a form is an entityForm
EntityForms are gaining importance in drupal 8 and 9. This is how to make sure you are in one.
Blog
Change label and description of a revision log field in drupal 8 and 9
Revisions are a great thing for tracking changes between entities. This snippets allows you to name them different in your entity forms.
Blog
Redirect anonymous users to login form in drupal 8 & 9
An often use case for dashboards or software behind a login is to redirect anonymous users to the login page. Like always, I do not want to use contributed modules for this.
Blog
Overwrite input colors in Tailwind custom forms plugin
Tailwind custom forms is a great plugin to quickly theme your form elements. This snippet guides you through some set-up.
Blog
Get image field with image style in preprocess_node()
This technique is used quite a lot to get an image styled url of an image in your twig file.