- Status changed to Closed: outdated
over 1 year ago 4:54pm 2 January 2024 - 🇮🇹Italy afagioli Rome
More releases arrived since then...
To date, there no similar reports
I installed BEE in a clean Drupal 8.9.11 install and everything worked until I tryed to install Permission by Term.
The class SalepriceResolver implements PriceResolverInterface broke the install.
Just install BEE with Permission by Term.
As the function does not checks if commerce module is installed it will break.
So I changed the code as follows:
if ($entity->bundle() == 'bee' && $entity->bundle() == 'commerce') {
$store = $context->getStore();
if ($cart = \Drupal::service('commerce_cart.cart_provider')->getCart('default', $store)) {
$order_items = $cart->getItems();
foreach ($order_items as $order_item) {
if ($order_item->bundle() == 'bee') {
return $order_item->getUnitPrice();
}
}
}
} else {
return;
}
We need to test this with a commerce install.
Closed: outdated
1.2
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
More releases arrived since then...
To date, there no similar reports