registry = $registry; } /** * {@inheritdoc} */ protected function _toHtml() { if (! $this->coreHelper->isPwaButtonVisibleOnProductPage()) { return ''; } /** @var \Magento\Catalog\Model\Product $product */ $product = $this->registry->registry('product'); if ($product instanceof Product && $this->categoryExclusionHelper->productHasExcludedCategory($product) ) { return ''; } return parent::_toHtml(); } }