What module would you use to do this job? Feeds is the only module I am aware of that has a UI and doesn't take a tedious amount of time for simple content mappings
Thanks for the reply. I don't use the Media module at all to be honest. Back in the D7 days this worked like a charm.
I am not sure what other module other than "Feeds" is better. I am sure developers have their own workflows, but Feeds always delivered for those of us less likely to use the CMD prompts.
Does anyone else in the community have any experience with this that can help out or advise?
back from 7 β created an issue.
I am logged in to super admin account. Is this server config related?
Back From 7 β created an issue.
Back From 7 β created an issue.
Back From 7 β created an issue.
error with composer
Could not find package centarro/commerce-kickstart-project with stability stable.
Back From 7 β created an issue.
Back From 7 β created an issue.
Back From 7 β created an issue.
I don't believe so as I am working on a site with Version 10
Got sucked into WP land but back to Drupal 10 land -
I am new to Drupal 9 - 10 theming. How do you get a custom css file to be recognized. I have tried everything and nothing seems to work...
I placed style.css in /css directory of this custom theme
This should be correct for the regions:
name: globalrs
type: theme
core_version_requirement: ^8 || ^9 || ^10
description: Global Resources Custom Olivero Theme
base theme: olivero
olivero/global-styling:
css:
theme: globalrs/style.css
libraries:
- globalrs/resources
regions:
header: Header
primary_menu: Primary menu
secondary_menu: Secondary menu
hero: Hero (full width)
highlighted: Highlighted
breadcrumb: Breadcrumb
social: Social Bar
content_above: Content Above
content: Content
sidebar: Sidebar
content_below: Content Below
footer_top: Footer Top
footer_bottom: Footer Bottom
Back From 7 β created an issue.
Back From 7 β created an issue.
Is this best practice to do this?
Allow minimum stability:
In your project's composer.json file, you can change the "minimum-stability" setting to allow for more unstable packages. To do this, add the following line:
"minimum-stability": "dev",
"prefer-stable": true,
After adding this to your composer.json, run the following command:
composer require drupal/commerce:2.36.0
Back From 7 β created an issue.
Is Commerce Kickstart maintained anymore? Can someone give an update. The composer installation never seems to run correctly with errors as of late.
Drupal does not do well with shared hosting. I would recommend a managed / dedicated / virtual host
INSTALL DRUPAL LATEST VERSION - NOT IN /WEB DIRECTORY
-
SSH - Once you are in the root directory, execute the following command:
$ composer create-project --no-install drupal/recommended-project .
- Once you have created the project directory, you can edit the composer.json file
{ "name": "drupal/recommended-project", "description": "Project template for Drupal projects with a relocated document root", "type": "project", "license": "GPL-2.0-or-later", "homepage": " https://www.drupal.org/project/drupal β ", "support": { "docs": " https://www.drupal.org/docs/user_guide/en/index.html β ", "chat": " https://www.drupal.org/node/314178 β " }, "repositories": [ { "type": "composer", "url": "https://packages.drupal.org/8" } ], "require": { "composer/installers": "^2.0", "drupal/core-composer-scaffold": "^10.1", "drupal/core-project-message": "^10.1", "drupal/core-recommended": "^10.1" }, "conflict": { "drupal/drupal": "*" }, "minimum-stability": "stable", "prefer-stable": true, "config": { "allow-plugins": { "composer/installers": true, "drupal/core-composer-scaffold": true, "drupal/core-project-message": true, "phpstan/extension-installer": true, "dealerdirect/phpcodesniffer-composer-installer": true }, "sort-packages": true }, "extra": { "drupal-scaffold": { "locations": { "web-root": "web/" } }, "installer-paths": { "web/core": [ "type:drupal-core" ], "web/libraries/{$name}": [ "type:drupal-library" ], "web/modules/contrib/{$name}": [ "type:drupal-module" ], "web/profiles/contrib/{$name}": [ "type:drupal-profile" ], "web/themes/contrib/{$name}": [ "type:drupal-theme" ], "drush/Commands/contrib/{$name}": [ "type:drupal-drush" ], "web/modules/custom/{$name}": [ "type:drupal-custom-module" ], "web/profiles/custom/{$name}": [ "type:drupal-custom-profile" ], "web/themes/custom/{$name}": [ "type:drupal-custom-theme" ] }, "drupal-core-project-message": { "include-keys": [ "homepage", "support" ], "post-create-project-cmd-message": [ " </>", " Congratulations, youβve installed the Drupal codebase </>", " from the drupal/recommended-project template! </>", " </>", "", "Next steps</>:", " * Install the site: https://www.drupal.org/docs/installing-drupal β ", " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html β ", " * Get support: https://www.drupal.org/support β ", " * Get involved with the Drupal community:", " https://www.drupal.org/getting-involved β ", " * Remove the plugin that prints this message:", " composer remove drupal/core-project-message" ] } } }
- Change the "web" property TO:
"web": ["./"]
- Once you have changed the "/web" property in composer.json, you can run the $ composer install command from the root directory:
$ composer install
Drupal will be installed in the current directory, which is the root directory. NOT THE "/web" folder!~!