epl_button_label_tour filter to modify the Tour Label

The epl_button_label_tour filter allows you to change the Tour label.

// Adjust Easy Property Listings Tour label
function my_epl_tour_label() {
	return 'Awesome Tour Button Label';
}
add_filter( 'epl_button_label_tour' , 'my_epl_tour_label' , 1 );<br>