epl_button_label_mini_web filter to modify the Mini Web Labels

The epl_button_label_mini_web filter allows you to change the Mini Web label.

// Adjust Easy Property Listings Mini Web label
function my_epl_button_label_mini_web() {
	return 'Awesome Mini Web Button Label';
}
add_filter( 'epl_button_label_mini_web' , 'my_epl_button_label_mini_web' , 1 );<br>