FacetWP – hide the “License key” setting

<?php

// Add to your (child) theme's functions.php

add_filter( 'facetwp_settings_admin', function( $settings ) {
    unset( $settings['general']['fields']['license_key'] );
    return $settings;
});