Problem:
When we select an option in a filter, the other filters do not display all the available options.
Solution:
That is the default feature in Toolset searches, the possibility to offer only options that will produce results. You can disable it on the "View Search" block level. Check this screenshot http://prntscr.com/16wqox1
Problem: I have a URL field that I would like to use to generate a custom link tag. I would like to append some URL parameter string to the end of the URL field.
Solution: Use our shortcode library to generate the HTML markup for your custom link from the URL field and your custom URL parameter string.
Problem:
The user would like to enqueue his child theme's styles after blocks styles.
Solution:
Toolset Blocks has implemented a lazy load mechanism for its styles, using Javascript. If you want to use its style as a dependency, you will need to disable the lazy loading mechanism. That can be done using a constant in the wp-config.php file:
define( 'TB_SCRIPT_STYLE_LAZY_LOAD', false );
After that, the styles will be enqueued in the default way, and you will be able to set it as a dependency for your child theme's styles.
So you can depend on the "toolset-blocks-css". For example: