As you can see from my screen shots the post has a title and is published but as you can see from my second screen shot the post is not listed in the list of posts in cornerstone
I have reset permalinks and emptied my cache but both have had no effect.
Hey @The_Capture_Factory,
Thanks for reaching out!
The default sorting is just only set to 100 that’s why the other pages/posts 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 with your clone existing page and search option. Just change the return value to higher if you have more than 200 pages and posts.
// number of posts to limit in search
add_filter("cs_locator_limit", function() {
return 200;
});
Hope that helps.
1 Like
That’s great many thanks. All working
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.