Drupal

How to install Homebrew, Composer, Git and WGET on Mac OSX High Sierra, Mojave, Catalina, Big Sur, Monterey

NOTE: This post is a few years old and may be outdated, but I did just install the following on a new iMac M1 in 2022 and here’s what worked: First, Git comes installed by default on most Mac and Linux machines. To check if you have Git installed, open your Terminal and type git

Drupal Development Team in NYC partnered with Design Agency

Drupal Theming for Clinical Trials Data Organization Continuing a 6-year relationship with this organization, we completed the front-end re-design work for CorEvitas. The design was led by the talented folks at NYC-based agency, Sequel Studio. The folks at CorEvitas were going through a rename and rebrand, looking to freshen up their Drupal website that has

Tutorial: How to Migrate from Drupal 6 or 7 to Drupal 8

Overview As Drupal 8 does not allow you to upgrade an existing drupal 6 or 7 database to the Drupal 8 structure, content and configuration must be migrated over. To facilitate this, there are a few modules created to assist with this effort. See: https://www.drupal.org/docs/8/upgrade/upgrading-from-drupal-6-or-7-to-drupal-8 Considerations There are two ways currently offered to run migration efforts:

Configuring Raspberry Pi with Terminus to run Drush Commands, Drupal

We were having a bit of trouble with a MLSli API sync timing out on Pantheon.io, so we: – created a basic shell script with the drush commands – configured a Raspberry Pi with Terminus, to be able to run the “drush” commands and use it as the “launcher” And now we are successfully performing

Tutorial: How to Migrate from WordPress to Drupal

For WordPress to Drupal Migrations you can use the wordpress_migrate Module. The only caveat I’ve noticed is the lack of support for multiple post types. If that’s a concern and content is your only focus, the Universal route may be the way to go. For the migration of menus I’ve found the menu_import module very useful. You can setup

React Native and Drupal — App integration

Installation Main commands (You can also check https://facebook.github.io/react-native/docs/running-on-device.html) After cloning the project. On the project folder. Run: npm install#To download the node packages into the node_modules folder. If you don’t have un-met dependencies. This should be the main command to run the app with the ios simulator:react-native start iOS This other command is the generic one

.gitignore Icon files from Google Drive

If you checkout a Git repo into Google Drive each directory gets a hidden “Icon” file: You can modify the .gitignore file with a simple “?” at the end of the “Icon” and that will ignore it. # OS generated files # ###################### .DS_Store* ehthumbs.db Icon?

Drupal 7: Views: Multiple Contextual Filters with Multiple Relationships

In this example we’ll be building a view in Drupal 7 that filters for different recipes based on liquor brand (a content type) and product (another content type).This will be a Page View. The path will be/recipes/%/%1. Create the view as normal2. Add a “Relationship” for the entity reference for “Brand” 3. Add a “Contextual

Drupal 7: How to hide EVA or block if view is empty

Go to the advanced tab of your view. Add contextual filters. Select Global: Null. When the filter value is NOT available: Select ‘Hide view’. Remove any “No results behavior” that may have been previously set.