How to add a personal avatar
-
Hello
Is it possible to add a personal avatar to the account information? This will make customer communication in the review area more interesting and lively.
Thank you!
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add the code below in the functions.php file in your child theme:
function showing_custom_avatar(){
$current_user = wp_get_current_user();
echo'<div class="myaccount_custom">'.get_avatar($current_user->user_email,72,'',$current_user->display_name). '</div>';
}
add_action( 'woocommerce_account_content','showing_custom_avatar',5);
Best Regards
Yes, the avatar is displayed, but for customers, can they edit their own avatar?
Thank you !
Hello,
The avatar displayed by this code pulls from the email-associated image, which users can change by updating the email.
Best Regards