Skip to main content
152
results
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 =...
Andrew Fletcher
Having access to a site’s URL in your templates can come in handy for many different use cases, such as determining if your on the admin/people page as apposed to admin/reports/dblog or admin/content.  These three pages might seem to bear on common relationship, however there is at least one.  Users. I edited the user in the admin/people page so rather than showing just username, know shows: Firstname Lastname Email Username However, in making this change I discovered that when on...
Andrew Fletcher
I want to create a content type that has a paragraph.  Easy enough. What...
Andrew Fletcher
Creating URL's in Drupal programmatically: Internal path use...
Andrew Fletcher
Working in Drupal 9.x, I was loading images via the Media module.  Below 1...
Andrew Fletcher
Have you tried to run a composer update script that...