Hi,
Tags are not supported there.
However, it's possible for the badges on the product details page by adding the code
if(!empty($this->element->badges)) {
foreach($this->element->badges as $i => $b) {
foreach(get_object_vars($this->element) as $k => $v) {
if(!is_string($v)) continue;
$this->element->badges[$i]->badge_url = str_replace('{VAR:'.strtoupper(str$k).'}', $v, $b->badge_url);
}
}
}
before the line:
if(!empty($this->element->badges))
in the file product / show_block_img via the menu Display>Views.