How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
130
Hide Beaver Builder templates easily. This code snippet helps you conceal Beaver Builder’s default templates, ensuring a cleaner interface if Beaver Builder is configured to display them.
<?php
add_filter( 'fl_builder_ui_js_config', function( $config ) {
unset( $config['panelData']['tabs']['templates']['views'][0] );
unset( $config['panelData']['tabs']['templates']['views'][1] );
return $config;
});