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.
Problem:
Autopopulate custom text field from title
Solution:
If you are using Toolset form then you will require to use "cred_save_data" hook to copy the title to custom field. If you want to copy the title to custom filed when you save the post from backend admin, you can use the "save_post" hook.