leglesslizard
3/13/2018 - 9:57 AM

Adjust Join/Leave Waitlist button text

Make adjustments to the text on the waitlist Join/Leave buttons

add_filter( 'wcwl_join_waitlist_button_text', 'change_waitlist_join_button_text' );
function change_waitlist_join_button_text( $text ) {
	return __( 'Custom Join Button Text' );
}
add_filter( 'wcwl_leave_waitlist_button_text', 'change_waitlist_leave_button_text' );
function change_waitlist_leave_button_text( $text ) {
	return __( 'Custom Leave Button Text' );
}