Product Group + Product Rating and Reviews feature integration

Edit on GitHub

Install feature core

Follow the steps below to install Product group + Product rating & review feature core.

Prerequisites

Install the required features:

NAME VERSION
Product Group 202212.0
Product Rating & Reviews 202212.0

Set up behavior

Register the following plugin:

PLUGIN SPECIFICATION PREREQUISITES NAMESPACE
ProductReviewSummaryProductViewExpanderPlugin Expands ProductViewTransfer with the product review summary data (average rating). None SprykerShop\Yves\ProductReviewWidget\Plugin\ProductGroupWidget
<?php

namespace Pyz\Yves\ProductGroupWidget;

use SprykerShop\Yves\ProductGroupWidget\ProductGroupWidgetDependencyProvider as SprykerShopProductGroupWidgetDependencyProvider;
use SprykerShop\Yves\ProductReviewWidget\Plugin\ProductGroupWidget\ProductReviewSummaryProductViewExpanderPlugin;

class ProductGroupWidgetDependencyProvider extends SprykerShopProductGroupWidgetDependencyProvider
{
    /**
     * @return \SprykerShop\Yves\ProductGroupWidgetExtension\Dependency\Plugin\ProductViewExpanderPluginInterface[]
     */
    protected function getProductViewExpanderPlugins(): array
    {
        return [
            new ProductReviewSummaryProductViewExpanderPlugin(),
        ];
    }
}
Verification

Make sure that the product rating on a product abstract card changes correctly after hovering over a color selector.