_quickviewOptions = $this->scopeConfig->getValue('weltpixel_quickview', \Magento\Store\Model\ScopeInterface::SCOPE_STORE); } /** * @return string */ public function getSkuTemplate() { $removeSku = $this->_quickviewOptions['general']['remove_sku']; if (!$removeSku) { return 'Magento_Catalog::product/view/attribute.phtml'; } return ''; } /** * @return string */ public function getCustomCSS() { return trim($this->_quickviewOptions['general']['custom_css']); } /** * @return int */ public function getCloseSeconds() { return trim($this->_quickviewOptions['general']['close_quickview']); } /** * @return boolean */ public function getScrollAndOpenMiniCart() { return $this->_quickviewOptions['general']['scroll_to_top']; } /** * @return boolean */ public function getShoppingCheckoutButtons() { return $this->_quickviewOptions['general']['enable_shopping_checkout_product_buttons']; } }