Problem: After activating any one of several Toolset plugins, the column-based design of the My Account page for WooCommerce is broken. I use a child of the GeneratePress theme.
Solution: Deactivate Bootstrap by going to Toolset > Settings > General tab.
Problem:
The user would like to display draft posts for logged-in users.
Solution:
There are two ways to achieve this:
1. Using two views, that are displayed conditionally based on the logged in users.
One view will be displayed to non logged in users.
Another view will be displayed to logged-in users. In this view, add a query filter on post status to choose the statuses that you want to display. Check this article https://toolset.com/documentation/user-guides/views/filtering-views-query-by-post-status/
2. Using one view, and altering the query filter programmatically. You can use the wpv_filter_query and if the user is logged in, add the other statuses to the view's query arguments.