Tagged: Masonry Gallery, pagination
Hi Team Kriesi,
1st page of blog-posts shows the standard layout, on the 2nd page the masonry gallery is missing.
http://blog.schladming-dachstein.at/page/2/
Any ideas?
Hey xxtita,
No idea atm, please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
Best regards,
Nikko
some info
Hi,
Thank you for the info.
We added the following filter in the functions.php file.
add_filter( 'avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2);
function avia_masonry_entries_query_mod( $query, $params ) {
if( is_page(2046) ) { // id of blog page
$query['paged'] = 1;
}
return $query;
}
Best regards,
Ismael
thanks, works perfect.
just a questions – is this ab bug, or just on this site?