Upload function does not work
-
Hi,
I’m desperately trying to implement upload avatar field in my registration page : https://revedevoile.com/enregistrer/
For that I used your documentation and added this function in my function.php file :
function my_avatar_filter() { // Remove from show_user_profile hook remove_action('show_user_profile', array('wp_user_avatar', 'wpua_action_show_user_profile')); remove_action('show_user_profile', array('wp_user_avatar', 'wpua_media_upload_scripts')); // Remove from edit_user_profile hook remove_action('edit_user_profile', array('wp_user_avatar', 'wpua_action_show_user_profile')); remove_action('edit_user_profile', array('wp_user_avatar', 'wpua_media_upload_scripts')); // Add to edit_user_avatar hook add_action('edit_user_avatar', array('wp_user_avatar', 'wpua_action_show_user_profile')); add_action('edit_user_avatar', array('wp_user_avatar', 'wpua_media_upload_scripts')); } // Loads only outside of administration panel if(!is_admin()) { add_action('init','my_avatar_filter'); }
Then in my registration page, I added this hook :
<?php do_action('edit_user_avatar', $current_user); ?>
But whenever I choose an image with acceptable file size and click on upload button, the page refreshes and no image has been uploaded.
Could you explain me how to solve this issue ? Did I made something wrong ?
Thanks for your help,
Cedric
- The topic ‘Upload function does not work’ is closed to new replies.