Problem:
The user was trying to implement a view filter that will compare values as numbers(>= <=, etc.) for a checkboxes field.
Solution:
It won't be possible to search using a comparison on a Checkboxes field. Because the field's values are stored as serialized arrays, and search within them is always performed using a "LIKE" operator. Check the possible operator for custom field search here https://developer.wordpress.org/reference/classes/wp_meta_query/
If you need to use "greater than" operator you will need to use a different field type.
I'll suggest using a select field instead of a checkboxes field. You may also use a number field or a single-line field.
The issue here was that the user's frontend page was not loading correctly and was throwing the error
Fatal error: Uncaught Error: Object of class WP_Term could not be converted to string in /home/travelingfaq/public_html/dev/wp-content/plugins/toolset-blocks/vendor/toolset/dynamic-sources/server/Integrations/ThirdParty.php:157 Stack trace: #0 /home/travelingfaq/public_html/dev/wp-content/plugins/toolset-blocks/vendor/toolset/dynamic-sources/server/Integrations/ThirdParty.php(157): str_replace('\r\n', '<br />', Object(WP_Term)) #1 /home/travelingfaq/public_html/dev/wp-includes/class-wp-hook.php(292): Toolset\DynamicSources\Integrations\ThirdParty->replace_in_shortcode_output(Object(WP_Term), '__current_post', 4615, 'post-taxonomies...', 'age-group', Array) #2 /home/travelingfaq/public_html/dev/wp-includes/plugin.php(212): WP_Hook->apply_filters(Object(WP_Term), Array) #3 /home/travelingfaq/public_html/dev/wp-content/plugins/toolset-blocks/vendor/toolset/dynamic-sources/server/DynamicSources.php(811): apply_filters('toolset/dynamic...', Object(WP_Term), '__current_post', 4615, 'post-taxonomies...', 'age-group', Array) #4 / in /home/travelingfaq/public_html/dev/wp-content/plugins/toolset-blocks/vendor/toolset/dynamic-sources/server/Integrations/ThirdParty.php on line 157
Solution:
Through testing I was able to find that the issue was being caused by using Taxonomies as a dynamic content option for the Ultimate addon for gutenburg info box block.
At the moment the issue has been escalated to our 2nd tier supporters and developers.
However the workaround to this can be seen at the link below.
Problem:
The user would like to display a map and marker inside an Elementor template
Solution:
The current Toolset-Elementor integration offers only a view widget. But we can still use shortcodes to insert a content template inside of an Elementor template:
[wpv-post-body view_template="Name or slug of the content template"]
Create a Toolset content template, add the map and the marker to it. Then display it inside Elementor using the wpv-post-body shortcode.
Solution:
It seems you must have created a content template before for the post type "Free Items" and didnt provide the proper name for that CT then deleted it and then created a new CT and assign it. Due to that there must be some edge case and the new CT was not assigned properly.