oeco/jeo

limited number of posts in map

Closed this issue · 1 comments

I am with 580 posts and only a small part are in my map.
Is there a limit? if true how do i override this limit?

You can use the jeo_markers_limit filter on the functions.php file from your theme to set this limit (preferably a child theme, to keep JEO files intact).

It should look something like this:

function my_markers_limit() {
  return -1; // Use -1 for unlimited;
}
add_filter('jeo_markers_limit', 'my_markers_limit');