Skip to main content
429
results
Andrew Fletcher
Do you want to know how to add a node alias in a twig file?  Rather than do the set up in a custom module or using your theme file. To be able to create a node alias in a twig file you need to know the node.nid value.  Obviously without it you have nothing to reference from.  In this example, the node.nid value is extracted during a loop.  A fairly standard loop such as {% for row in rows %} // ... script doing some magic ... // {% endfor %}Begin by setting the nid value...
Andrew Fletcher
If you edit a Drupal contrib module, the next time the module is updated those...
Andrew Fletcher
As a web developer, you will most likely need to run local copies of a bunch of...
Andrew Fletcher
Every project has to kick off somewhere.  Yep well that's a no brainer....
Andrew Fletcher
On your local OSX environment using Terminal or iTerm you can create a MySQL...
Andrew Fletcher
This article assumes that you are running Docker and Lando already.  Don't meet this... have a read through the following page "Building a Drupal or Laravel instance on OSX using Lando and Docker" for more. I'll be using the following: .lando.yml file: name: alpha recipe: drupal9 config: webroot: web  Lando info Lando provides a suite of useful tools, but for now I will focus on one command info lando infoThis command exposes information about our running containers or “services”...
Andrew Fletcher
While working with lando, I had the following error ERROR: for safs_appserver_1...
Andrew Fletcher
The cache system in Drupal 9 delivers the API with the elements required for...
Andrew Fletcher
How to get the current user or load a user using a uid value. $current_user =...
Andrew Fletcher
Running a few SEO and performance tests and I discovered that the site logo...
Andrew Fletcher
Installing Varnish to increase the speed of the page load. Install varnish using the command below yum install varnishYour response should look something like Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.realcompute.io * epel: epel.mirror.digitalpacific.com.au * extras: mirror.realcompute.io * updates: centos.mirror.digitalpacific.com.au Resolving Dependencies --> Running transaction check ---> Package varnish.x86_64 0:4.0.5-3.el7 will be...
Andrew Fletcher
In terminal I ran a regular command - compose update.  Something I've...
Andrew Fletcher
How do you exclude the current node from a list view? In some situations, for...
Andrew Fletcher
Currently I'm working through an app that has been abandoned by the developers....
Andrew Fletcher
I installed Lando 3.6.2 and Laravel 9.  When I visit the web page, I...