hi!
my problem is simple. Look my code:
<div class="ngg-albumoverview">
<!-- List of galleries -->
<?php foreach ($galleries as $gallery) : ?>
<div class="album-romero">
<div class="galeria">
<a class="Link" href="<?php echo nextgen_esc_url($gallery->pagelink) ?>">
<div class="galeria-title"> <?php echo esc_attr($gallery->title) ?> </div>
<img class="galeria-img img-responsive" alt="<?php echo esc_attr($gallery->title) ?>" src="<?php echo nextgen_esc_url($gallery->previewurl) ?>"/>
</a>
</div>
<?php if (!empty($image_gen_params)) {
$max_width = 'style="max-width: ' . ($image_gen_params['width'] + 20) . 'px"';
} else {
$max_width = '';
} ?>
<?php if (@$gallery->counter > 0) : ?>
<p><strong><?php echo $gallery->counter ?></strong> <?php _e('Photos', 'nggallery') ?></p>
<?php endif; ?>
</div>
<?php endforeach; ?>
<!-- Pagination -->
<?php echo $pagination ?>
</div>
Its a album template. When use $gallery->previewurl my image have size thumbail. I need full size image…
web -> https://es.tinypic.com/view.php?pic=jt1eee&s=8#.Ux4LC-d5M5A
thanks!!!!