This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.

Reply To: shortcode post list or page builder post list

#1119
Jason Bobich
Keymaster

… It’s sort of difficult to follow you here without much detail in what you’re doing. I’m not sure if the very vague details are due to a language barrier between us or what.

But I think I might be understanding what you’re getting at and I think what you’re referencing might have something to do an issue that has been fixed already for the next update.

Try adding this to your Child theme’s function.php to reset the query after the paginated post list element.

function my_reset_query(){
	wp_reset_query();
}
add_action( 'themeblvd_element_post_list_paginated_after', 'my_reset_query' );