πŸ‡ΊπŸ‡ΈUnited States @Jay.Chen

Account created on 2 September 2007, about 17 years ago
  • Senior Drupal Developer at DOOR3Β 
#

Recent comments

πŸ‡ΊπŸ‡ΈUnited States Jay.Chen

It seems your view is sorting by the taxonomy tid now, so it returns the unexpected result.

Not sure how you configured your view. I think you should add the field 'Taxonomy term: Name' instead of the taxonomy reference in the View's Fields setting. Then you should config it to sort by the 'Taxonomy term: Name', not the taxonomy reference.

πŸ‡ΊπŸ‡ΈUnited States Jay.Chen

You can update the user created time programmatically.

$user = \Drupal::entityTypeManager()
      ->getStorage('user')
      ->load(2);

if ($user) {
  $user->set('created', strtotime('2023-12-01 00:00:00'));
  $user->save();
}
πŸ‡ΊπŸ‡ΈUnited States Jay.Chen

This won't work. You have to insert the uuid as well.
jeremypeter's code should work. https://www.drupal.org/node/1029506#comment-15159060 β†’

πŸ‡ΊπŸ‡ΈUnited States Jay.Chen

The command "composer require drupal/calendar:^1.0@beta" works for me if I changed the "minimum-stability" to "dev" instead of "stable" in the composer.json file.

"minimum-stability": "dev",
"prefer-stable": true,
πŸ‡ΊπŸ‡ΈUnited States Jay.Chen
$ composer require drupal/admin_toolbar drupal/backup_migrate drupal/devel drupal/entity drupal/paragraphs drupal/token drupal/token_filter
Production build 0.71.5 2024