• Hi,

    I’m currently using the code to add custom fields on the account tab but it’s not updating/saving. It reloads and the updates are there but if go to and different page and come back it’s gone. All the fields does this.

    Also what is strange is if I change something in a field the page does something like a roload and the field value is changed but if I reload the page it’s asks “confirm form resubmission”

    add_filter( 'um_account_tab_general_fields', 'my_um_account_mobile', 10, 2 );
    
    function my_um_account_mobile( $args, $shortcode_args ) {
    
        $args .= ',phone_number,mobile_number';
        return $args;
    }
    • This topic was modified 4 years, 4 months ago by tceg.
    • This topic was modified 4 years, 4 months ago by tceg.

The topic ‘Account tab fields not saving data.’ is closed to new replies.