• Resolved Panos Sakalakis

    (@meymigrou)


    Hi, thank you keeping the plugin up-to-date and providing it for all of us to use!

    What’s the easiest way to let my WooCommerce clients upload their avatars so they can review my products with a picture? In WooCommerce “My Account” page there isin’t any upload button.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Yes it is if you are still interested:
    I took one of my other code which inserts a short code into profile edit page

    add_action('woocommerce_after_edit_account_form', 'custom_wc_after_edit_account_form');
    function custom_wc_after_edit_account_form() {
       echo '<br><h2 class="screen-heading general-settings-screen">Avatar Settings</h2>';	
    		echo do_shortcode('[avatar_upload]');
    
    }

    You will need to paste this into your functions and you should see avatar upload button.

    Thread Starter Panos Sakalakis

    (@meymigrou)

    Thank you @kachan64, I’ll give it a try! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Avatars in WooCommerce Profile Page’ is closed to new replies.