December 4, 2012 at 10:48 pm
#1119
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' );