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.
Problem: I have a View of related posts in an M2M relationship. In that View, I would like to display related posts from a different M2M relationship.
Solution: Create a Content Template for the original related posts View and insert it in the View's loop using a shortcode. Then use the Block Editor to create the nested View of related posts from another M2M relationship.
Put different products into cart on different field values.
Solution:
After user submit the form, in server side, you can use filter hook cred_commerce_add_product_to_cart to change the product in cart automatically, see our document.