Hi;
Ok ok, I found a temporary solution to hide the free from the unconnected.
My code :
if ( !pmpro_hasMembershipLevel(array(x,x,x)) ) :
function see_bot() {
global $wpdb;
echo ‘<style> div#pmpro_levels_table > div > div:nth-of-type(1) { display: none; } </style>’;
}
add_action( ‘init’, ‘see_bot’ );
endif;