Whenever I enable the "Managed by Access" setting in Toolset admin, my posts or pages disappear from the dashboard.
Solution:
In fact the problem is related to WordPress.com's default post/page list view mode. I just turned it to Classical view mode (there's an option for it in the admin bar) and the posts/pages came back.
Problem:
The issue here is that the user wanted assistance to compare 2 Toolset Types date fields and hide a section of their content if both date fields are equal.
Solution:
It should be noted that Toolset date fields are stored as timestamps so this will be an exact comparison depending on the precision of the date field. What I mean is that if you set the field to datetime then the dates and the times of both fields must match exactly.
Once you can confirm this then you will be able to compare them below using the timestamp.
[wpv-conditional if="( $(date-aa) eq $(date-bb) )"]
<!-- content to conditionally show goes here -->
[/wpv-conditional]
Should it be a case where the fields have the same date but different times then you can use the format below.
[php]
[wpv-conditional if="( '[types field='date-aa' format='Y m j'][/types]' eq '[types field='date-bb' format='Y m j'][/types]' )"]
[/wpv-conditional]
[php]
This will do a comparison based on the human readable date only.
The issue here is that the user had problems with the width of their archive and wanted it to be reduced to where it's aligned with their menu
Solution:
This is a purely css solution and in this user's case the problem was because of the natural design of the theme.
The css solution will vary based on the theme and classes the theme users so the best solution would be to have the theme's support team address the issue.