Skip to main content
143
results
Andrew Fletcher
Attempting to update the database, irrespective whether I run update.php or preferred method drush updb the following errors were appearing: [notice] Module captcha has an entry in the system.schema key/value storage, but is not installed. <a href=":url">More information about this error</a>. [notice] Module image_captcha has an entry in the system.schema key/value storage, but is not installed. <a href=":url">More information about this error</a>. [notice] Module...
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...
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 = \Drupal::currentUser(); $user = \Drupal\user\Entity\User::load($current_user->id());or just use $user = \Drupal\user\Entity\User::load(\Drupal::currentUser()->id());An example of this in action /** * Change the display of the user's name. * * @param int $uid * User id. * * @return string * User name. */ function change_users_name($uid) { // status of the current user $logged_in =...
Andrew Fletcher
Running a few SEO and performance tests and I discovered that the site logo...
Andrew Fletcher
How do you exclude the current node from a list view? In some situations, for...
Andrew Fletcher
I'm receiving an error with a path of Drupal\path_alias\AliasManager Upgrading...
Andrew Fletcher
Let say in composer.json you have "drupal/core-recommended": "^9.2" You're...
Andrew Fletcher
Have you tried adding custom synonyms to Solr on Drupal? How did you go? What do you need to do to connect a custom synonym list to your Solr?   Set-up : the tools What am I using? Search API Synonym- https://www.drupal.org/project/search_api_synonym Solr : 8.1   Steps to get a custom Solr working Install Search API Synonym Read through the instructions on the module page or have a look at the following article Setting up synonyms on your Drupal site with a few errors you might...
Andrew Fletcher
Running Docker Dangerous word... I'm assuming that Docker is installed....
Andrew Fletcher
Is Docker installed? Check if your installation is ok and spin up Docker as...
Andrew Fletcher
Create and push to Docker Hub Creating your own custom image... you need to have...
Andrew Fletcher
If you are using theme_get_settings, such as: $value =...