Cita:
Iniciado por franciscomarin petit89, ¿cómo hace esa redirección que dices de una URL externa? ¿No es más fácil buscar la llamada a la imagen y cambiarla por https?
La solución era editar el template, hay que editar el siguiente archivo:
/html/com_content/article/default.php del template.
Código PHP:
Ver original<aside class="itemAsideInfo">
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?> <?php
$author_obj = JFactory::getUser($this->item->created_by);
$author_email = $author_obj->email;
$author_name = $this->item->created_by_alias ? $this->item->created_by_alias : $this->item->author;
$gravatar_url = "[B]http[/B]s://www.gravatar.com/avatar/" . md5( strtolower( trim( $author_email ) ) ) . ".jpg?s=86"; ?>
<img src="<?php echo $gravatar_url; ?>" title="<?php echo $author_name; ?>" alt="<?php echo $author_name; ?>" />
<?php endif; ?>