Skip to content
Snippets Groups Projects

Issue #3167716: Unpublished variation access

Files
5
@@ -239,7 +239,7 @@ class Product extends CommerceContentEntityBase implements ProductInterface {
$default_variation = NULL;
foreach ($this->getVariations() as $variation) {
// Return the first active variation.
if ($variation->isPublished() && $variation->access('view')) {
if ($variation->access('view')) {
$default_variation = $variation;
break;
}
Loading