πΊπΈ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