Anonymous email not to be obligatory
I want to be able to have email not obligatory on ad submission. This is the code you have mention in another thread.
function childtheme_remove_apc_email_validation() {
remove_filter( 'cp_listing_validate_fields', 'app_apc_validate_email_field', 10 );
}
add_action( 'after_setup_theme', 'childtheme_remove_apc_email_validation', 99999 );
Also you mention on the ChangeLog 'Added ability to override email field in submission form for anonymous user by using ‘APP_APC_ANONYMOUS_EMAIL’ constant'
How do you do it?