Dear Enfold Theme,
We are currently implementing a gallery page where a lightbox opens in a gallery with additional data and the image. Unfortunately, the image is only displayed partially. We are using the following function for this:
$grid = new avia_post_grid(
array(
'linking' => ‘’,
‘columns’ => ‘3’,
‘contents’ => ‘title’,
‘sort’ => ‘no’,
'paginate' => ‘yes’,
‘set_breadcrumb’ => false,
‘preview_mode’ => ‘auto’,
‘image_size’ => ‘full’
));
$grid->use_global_query();
echo $grid->html( ‘’ );
Highlighted in bold that the full images should actually be used. However, this does not seem to work.
