Hi,
There is no option for that.
It's done on purpose since normally the badge is on top of the product image and you want the popup to open with the full size image even if you click on the badge.
So you'll have to edit the file "show_block_img" via the menu Display>Views and change the code:
if(!empty($this->element->badges))
$html .= $this->classbadge->placeBadges($this->image, $this->element->badges, '0', '0',false);
$attr = 'title="'.$this->escape(@$image->file_description).'"';
if (!empty ($this->element->images) && count($this->element->images) > 1)
$attr .= ' onclick="return window.localPage.openImage(\'hikashop_main_image'.$variant_name.'\', \''.$variant_name.'\', event);"';
echo $this->popup->image($html, $img->origin_url, null, $attr);
to:
$attr = 'title="'.$this->escape(@$image->file_description).'"';
if (!empty ($this->element->images) && count($this->element->images) > 1)
$attr .= ' onclick="return window.localPage.openImage(\'hikashop_main_image'.$variant_name.'\', \''.$variant_name.'\', event);"';
echo $this->popup->image($html, $img->origin_url, null, $attr);
if(!empty($this->element->badges))
echo $this->classbadge->placeBadges($this->image, $this->element->badges, '0', '0',false);