How to use WP Bakery page builder with Toolset Views?
Solution:
The Toolset Blocks plugin is based on WordPress built-in blocks editor, which is different page builder from WP Bakery page builder, in order to use WP Bakery page builder with Toolset Views, you can setup the post view with classic editor.
Problem:
"VIEW not found" error, after migration to production-server
Solution:
Rather using manual migration, you should try to use the Duplicator or ALL in One WP Migration plugin to transfer your site from one server to another.
Problem:
Setting up a filter for a custom user role field - how to filer and display WooCommerce orders based on different role
Solution:
You can pass the role name as view's shortcode argument and then use the 'wpv_filter_query' filter to filter the orders based on the passed role.
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.