Blog
How to set the theme svg logo in a Drupal theme
In Drupal 8, the default logo needs to be a SVG file. Add this to your theme like this: themes/custom/mytheme/logo.svg.
Blog
How to create a custom Drupal theme with Bootstrap 5 dependency in 4 steps
Tutorial on how to create a Drupal 9 & 10 Bootstrap 5 integration with npm
Blog
Useful developer settings for Drupal: how to
So if you are building in Drupal > 8, you can have settings in the database (coming from configuration yaml files). BUT, you can also hardcode these in your settings.php file. These will always override the settings in the database.
Blog
How to fix Drupal\Component\Plugin\Exception\PluginNotFoundException: The "fakeobjects" plugin does not exist. Valid plugin IDs for Drupal\ckeditor...
Lately I was updating some Drupal websites and suddenly CKEditor was broken. It seems like it now needs its libraries from separate libraries folder instead of shipped with the module. Here is how I fixed it. I added the following packages to composer.json:
Blog
How to add translation with parameters in Angular template
When using angular core's translation mechanism, the translate pipe is our friend in the template. But what if we have dynamic parameters?
Blog
How to solve error TS7031: Binding element 'id' implicitly has an 'any' type.
This error occurred in my Angular app fetching IDS from an observable. How to solve error TS7031: Binding element 'id' implicitly has an 'any' type.
Blog
How to remove padding inside Ionic 5 button
I expected a button with no padding on the left and the right. Because when you look at the CSS of "ion-no-padding" in node_modules/@ionic/angular/css/padding.css, it says:
Blog
How to cast a string to a Number in Typescript
I had this use case where I got data from an API that gave me an id in a string format.
Blog
How to get the index in an *ngFor loop in Angular template
I had this problem looping over an array possibly larger than 10 items. But I only had to show 10. This snippet solves this problem.
Blog
How to vertically align the slot icon to the top in an Ionic 5 item
Ionic is a great UI asset library in cooperation with Angular. Lastly, I stumbled upon an issue where I need to vertically center my <ion-icon> component to the top position.