If you wish to quickly hide all references to the Hooks system of Blocksy, you can use this handy snippet. It hides the “Hook Locations” button on the toolbar.
add_filter('blocksy:content-blocks:has-actions-debugger', function ($c) {
return false;
});