Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter vdvtt

    (@vdvtt)

    list_data() method need to fix too, change word experince to experience

    • This reply was modified 7 years, 3 months ago by vdvtt.
    Thread Starter vdvtt

    (@vdvtt)

    Also you need to fix resume-upload-form/upload_template.php as well.

    line ~159

    from

    
    $data = array(
                    "name" => $fname.' '.$lname, 
                    "email" => $email, 
                    "phone" => $phone, 
                    "user_id" => get_current_user_id(), 
                    'resume_path' => strstr($movefile['url'], 'wp-content'),
                    'comments' => $comments,
                    'experince' => $exp
                );
    

    To

    
    $data = array(
                    "name" => $fname.' '.$lname, 
                    "email" => $email, 
                    "phone" => $phone, 
                    "user_id" => get_current_user_id(), 
                    'resume_path' => strstr($movefile['url'], 'wp-content'),
                    'comments' => $comments,
                    'experience' => $exp
                );
    
Viewing 2 replies - 1 through 2 (of 2 total)