Pages not showing in Cornerstone page list

Hello,

I have this page https://share.cleanshot.com/z0XYg3xQ (Member Info)

Which is published and live here: https://hardy-plant-society.com/member-info/

But it doesn’t show up in the Cornerstone page list here: https://share.cleanshot.com/vgWnrtcH

It does show up if I use the page search : https://share.cleanshot.com/4FVWWZRD

I don’t understand. Any ideas? Bill.

Hey Bill,

Thanks for reaching out!

The default sorting is only set to 100 that’s why the other pages are not showing. To fix your issue, you need to add this filter to override the default value. Please add the code below in your child theme functions.php and it should do the trick.

// number of posts to limit in search
add_filter("cs_locator_limit", function() {
  return 200;
});

Hope that helps and let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.