Skip to main content
220
results
Andrew Fletcher
The user parameters provides details about a specific user based on the following parameters: User uid; The output of this query will return user profile data only of the fields containing data.  An example of the data returned includes, but is not limited to the following: Name {name} - in the system this is their username; Created {created} Firstname {field_firstname} Lastname {field_lastname} Gender {field_gender} Calling a query To call a user query the details are...
Andrew Fletcher
Adding git tag to your actions. The regular process that I work to is git add...
Andrew Fletcher
In this woalk through I am going to use GitHub.  However, the steps are...
Andrew Fletcher
Attempting to update the database, irrespective whether I run update.php or...
Andrew Fletcher
Do you want to know how to add a node alias in a twig file?  Rather than do...
Andrew Fletcher
If you edit a Drupal contrib module, the next time the module is updated those edits will be wiped.  So they are not lost there are a couple of options for you to consider: Are the edits worth the contributing to the community?  Yes, you can fork the repo and add the changes for the developer(s) to review; or Create a patch file   Creating a patch file The process: Add the files you want to see in the diff.  Remembering to only add untracked files. git stash && git...
Andrew Fletcher
As a web developer, you will most likely need to run local copies of a bunch of...
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
In terminal I ran a regular command - compose update.  Something I've completed thousands of times previously.  However, this time I received the following response: env: php: No such file or directory  What gives? Well, thinking through what had recently changed... The only major change was upgrading OSX to Monterey.  So a little of Googling and found yep this could be the cause.  PHP has been removed from MacOS since v12 (Monterey), so you first need to...
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
First off, this isn't the only method to achieve the outcome of emptying a...
Andrew Fletcher
I'm receiving an error with a path of Drupal\path_alias\AliasManager Upgrading...