epl_button_label_floorplan to alter the Floor Plan label

Adjust the Floor Plan label with this filter added in @since 2.1.4

All you need to do is add the following function to your theme functions.php file to change the button label.

// Adjust Easy Property Listings Floor Plan label
function my_epl_floor_plan_label() {
	return 'Awesome Floor Plan Button Label';
}
add_filter( 'epl_button_label_floorplan', 'my_epl_floor_plan_label' );