Change default Registration email/URL | WordPress.org

[ad_1]

Hi @fuzzylamp0433 ,

You need to add below filter in your theme functions.php file to set default URL in registration email/url field :

add_filter('submit_event_form_fields_get_user_data', 'set_event_form_fields_default_value', 10, 2);

function set_event_form_fields_default_value($fields, $current_user_id){

    $fields['event']['event_registration_email']['value'] = 'YOUR_DEFAULT_URL';

    return $fields;

}

In above code, you have to pass the url link here ‘YOUR_DEFAULT_URL’ which you want to set as default value.

Thank you.

  • This reply was modified 4 hours, 22 minutes ago by Rita Kikani.

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer