- Issue created by @vlooi vlerke
To install basic cart for drupal 10 you are faced with this issue.
Issue with easy_install module on fresh installation on Drupal 10
π
Issue with easy_install module on fresh installation on Drupal 10
Active
An easy fix is to remove easy install as a dependency in the module info file.
Some other fields are also not really required, like address, city, zipcode and phone.
You can create your own order fields if you need them.
You can use phone field (in core) and the
address β
module.
If you want users to place their location on a map you can add
geolocation field β
Remove the following from the config > install folder.
field.field.node.basic_cart_order.basic_cart_address.yml
field.field.node.basic_cart_order.basic_cart_city.yml
field.field.node.basic_cart_order.basic_cart_phone.yml
field.field.node.basic_cart_order.basic_cart_zipcode.yml
field.storage.node.basic_cart_address.yml
field.storage.node.basic_cart_city.yml
field.storage.node.basic_cart_phone.yml
field.storage.node.basic_cart_zipcode.yml
Update the following yml files with new configurations.
core.entity_form_display.node.basic_cart_order.default.yml
core.entity_view_display.node.basic_cart_order.default.yml
core.entity_view_display.node.basic_cart_order.teaser.yml
Enable the module to use tokens from the order node to be used in the email template
There will be less fields available on a fresh install and only the basic fields needed to make the cart work will be available.
Active
7.0
Code