/**
  * Retrieves product links section title
  *
  * @param \Magento\Catalog\Model\Product $product
  * @return string
  */
 public function getLinksTitle($product)
 {
     $title = $product->getLinksTitle();
     if (strlen($title)) {
         return $title;
     }
     return $this->scopeConfig->getValue(\Magento\Downloadable\Model\Link::XML_PATH_LINKS_TITLE, \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
 }