/**
  * {@inheritdoc}
  */
 public function getProductPriceHtml(\Magento\Catalog\Model\Product $product, $priceType, $renderZone = 'item_list', array $arguments = array())
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProductPriceHtml');
     if (!$pluginInfo) {
         return parent::getProductPriceHtml($product, $priceType, $renderZone, $arguments);
     } else {
         return $this->___callPlugins('getProductPriceHtml', func_get_args(), $pluginInfo);
     }
 }