Dear, If you want hide not paid properties on listing, please install and switch your site to use Citilights Child theme, then add custom PHP code in file functions.php of Citilight Child theme
//Hide not paid properties
add_action('pre_get_posts', function(WP_Query $query){
if ( is_admin() || NooAgent::is_dashboard() ) {
return;
}
if(re_is_property_query($query)){
$meta_query = $query->get( 'meta_query' );
if ( ! is_array( $meta_query ) ) {
$meta_query = array();
}
$meta_query[] = array(
'key' => '_paid_listing',
'value' => '1'
);
$query->set( 'meta_query', $meta_query );
}
});
Best regards.