Skip to main content
145
results
Andrew Fletcher
Assuming there is a new field requiring a change on a content type. How do you ensure the changes apply in the next deployment? There are a couple of ways to achieve this... depending on whether a custom module exists or not.  I'll focus on using Drush. Drush is a great tool to manage many of Drupal's features.  For changes that are applied within the backend, best to use Drush export command - drush cex.  Then your config directory at root will be updated with the change....
Andrew Fletcher
Replicate Replicate the bug in your local environment. Check Check - do you have...
Andrew Fletcher
2 or 3 approaches to build a homepage or landing page through Drupal Please...
Andrew Fletcher
Drupal cache is one of the major subsystems that deliver Drupal's flexibility...
Andrew Fletcher
It appears that the plugin or file path is not working how it used to be on...
Andrew Fletcher
My goal was to get the base URL and compare it with the URL of the link.  Was it an internal or external link?  You can get the hostname, "{your_domain}", directly from the getHost() request: $host = \Drupal::request()->getHost();However, if you need the schema as well, such as https://{your_domain} $host = \Drupal::request()->getSchemeAndHttpHost();  In my situation, I needed to redirect the page to an external site and count the page.  So $cache =...
Andrew Fletcher
  JSON structure Outlining the structure of the elements common attributes:...
Andrew Fletcher
Whilst I had regularly used HAL to upload files through REST API, this is no...
Andrew Fletcher
How do you retrieve a taxonomy term tid value from it's name? In this situation,...
Andrew Fletcher
If you are like me, almost every view I have will have this filter.  So I...
Andrew Fletcher
Have you come across the following Drupal error message: Mismatched entity and/or field definitions. The following changes were detected in the entity type and field definitions.Run a database update status check drush updatedb:status --entity-updatesResponse ------------------ ---------------------------------- --------------- ---------------------------------------------------------------------- Module Update ID Type Description ...
Andrew Fletcher
Working on a decoupled React / Drupal 9 site. Aim: Adjust the output of curated...
Andrew Fletcher
How to make React calls on a Drupal 9 backend site using the search...
Andrew Fletcher
In this instance, I'll check the beginning of the string.  I want to focus...
Andrew Fletcher
  Using the Drupal Poll module and passing via RESTful API -  How do...