non esistono componenti del template, piuttosto è una override. Prova con
// recupera i link ed i parametri articolo
$urls = json_decode($this->item->urls);
$params = $this->item->params;
//MODIFICA QUESTO PARAMETRO SOLO DOVE RICHIESTO (TRA LE VIRGOLETTE ALTE)
$tuaimmagine='<img src="inserisci-qui-ilpercorso-della-tua-immagine" />";
<?php
$link=$urls->urla;
$label=$urls->urlatext,
$target = $urls->targeta;
// If no label is present, take the link
$label = ($label) ? $label : $link;
// If no target is present, use the default
$target = $target ? $target : $params->get('target'.$id);
// Compute the correct link
switch ($target)
{
case 1:
// open in a new window
echo '<a href="'. htmlspecialchars($link) .'" target="_blank" rel="nofollow">'.$tuaimmagine.'</a>';
break;
case 2:
// open in a popup window
$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=600';
echo "<a href=\"" . htmlspecialchars($link) . "\" onclick=\"window.open(this.href, 'targetWindow', '".$attribs."'); return false;\">".
$tuaimmagine.'</a>';
break;
case 3:
// open in a modal window
JHtml::_('behavior.modal', 'a.modal'); ?>
<a class="modal" href="<?php echo htmlspecialchars($link); ?>" rel="{handler: 'iframe', size: {x:600, y:600}}">
<?php echo $tuaimmagine . ' </a>';
break;
default:
// open in parent window
echo '<a href="'. htmlspecialchars($link) . '" rel="nofollow">'.
$tuaimmagine. ' </a>';
break;
}
?>
controlla se funziona, potrei aver fatto degli errri