Use classic editor to setup the views in Toolset Blocks plugin.
Solution:
Toolset Blocks plugin is advanced version of Toolset plugins, you can still use classic editor to setup the views, for example:
Dashboard-> Toolset-> Settings-> General, in section "Editing experience", enable option "Show both the legacy and Blocks interface and let me choose which to use for each item I build".
The issue here is that the user wanted their custom query filter to function like an OR query instead of the default AND..
Solution:
Previously you were allowed to change the field comparison logic from AND to OR and vice versa but it got broken somehow in a recent update.
To work around this you're going to have to construct the query manually using the views hook. Add the following to your Toolset Custom Code section and it should help to resolve the issue.
The Toolset custom codes can be found at Toolset -> Settings -> Custom Code
Now replace the 1234 with the ID of your view and then replace color and price with the slugs of the field that you are doing the query on. Remember to add the wpcf- prefix to the types custom fields slugs.
Problem: I would like to provide visitors the ability to create both free and paid posts on the front-end of the site using Forms.
Solution: In the current software this requires two Forms - one for free posts and another for paid posts. A more custom solution that provides both options in a single form will require custom code.
Problem: I am migrating from ACF to Toolset Types custom fields, and I have created a View that shows some of these custom field values. One of my fields shows the old ACF field value and it does not seem to update when I modify the Types field value.
Solution: In this case, the field slugs are slightly different and the shortcode used to display the field used the old ACF field slug. Updating to the new Types field slug solves the problem.