epl_hide_listing_statuses filter: Allow off market (offmarket) or withdrawn listings to display

In some cases you may want to allow the display of Off Market or Withdrawn listings to appear.

Status:

  • offmarket
  • withdrawn

Add the following filter to your theme functions or custom settings plugin to allow the display of off market listings.

<?php
function my_allow_epl_off_market( $status ) {

         // Only hide withdrawn
         $status = array( 'withdrawn' );

         return $status;
}
add_filter( 'epl_hide_listing_statuses' , 'my_allow_epl_off_market' );