Problem:
The user was having a post duplicated in two pages of the same view.
Solution:
The issue was not on the WordPress or Toolset Views sides, but rather on how MySQL tries to order and paginate multiple posts by date, where these posts have the same date (2020-05-02 00:00:00)
The solution should be to add a secondary sorting field (e.g. the post title) so that there is something to distinguish between the posts according to the ordering rules. Or edit the post_date of those posts and make sure each one has a unique date. http://prntscr.com/z7yjis
The issue here is that the user has an edit form link to a Toolset Edit form with a custom post status and once the form sets the custom status on the post the Edit form link no longer appears on the post.
Solution:
We can actually workaround this issue by utilizing one of our internal hooks for Forms.
Add the following to your Toolset Custom Code section in Toolset->Settings->Custom Code. Ensure that you've activated the shortcode by clicking the "activate" link on the snippet.
Problem: I have a signup page created with a signup form, and I would also like to display a link to the My Account page so existing Users can log in instead of registering. The link to the My Account page is not working.
Solution: Be sure to link to the My Account page and not the Content Template ID applied to the My Account page.