epl_button_target_floorplan

Using this filter you can apply a link target to the Floor plan buttons. Add this code to your theme functions or custom settings plugin.

<?php
// Open the floor plan button in a new window
function my_epl_button_target_floorplan() {
	return 'target="_blank"';
}
add_filter( 'epl_button_target_floorplan' , 'my_epl_button_target_floorplan' );