He instalado el Auto Image Resizer 1.3.0, con los adjuntos funciona muy bien, con un bbcode aparte, también funciona, es este:
Código: Seleccionar todo
IMG with Lytebox BBcode:
BBCODE:
[limg]{URL}[/limg]
HTML CODE:
<a href="{URL}" rel="lytebox" class="image-resize" ><img src="{URL}" alt="Lytebox Image" /></a>
Código: Seleccionar todo
Encontrar:
if (empty($bbcode_hardtpl))
{
global $user;
Reemplazar con:
if (empty($bbcode_hardtpl))
{
global $user, $config; /* IMAGE RESIZE */
Encontrar:
'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />',
Reemplazar con:
'img' => $config['img_resize_enable'] ? '<a href="$1" rel="lytebox" title="" class="image-resize" ><img src="$1" alt="' . $user->lang['IMAGE'] . '" /></a>' : '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />', /* IMAGE RESIZE */
También lo he probado desinstalando el [Beta] Avatar auto resize (0.0.4b) y el Prime links 1.2.7 por si interferían, pero tampoco.
Alguna idea?
Un saludo
ArrUnTuS