Working on a blog for a store and surprisingly I haven’t used author images in the past. I’ve come across the following liquid attribute:
article.user.image
I am not seeing anywhere in the staff section where an admin user can manage their avatar image.
The only thing I can think of is the SSO management page, but if that is the case a user can not have unique avatars per store (in the case an admin user has access to many stores).
@LitExtension thanks for confirming that - so as mentioned earlier, since it is tied to the user’s SSO account there is only one image that can be used globally across all Shopify stores.
Yes, it will show the same if the same account. Or you can upload the image in Assets and set the condition to display it, so it will be custom for each store.
Ex:
{%- if article.user == 'ABC' -%}
// show image Assets
{%- else -%}
// show image user
{%- endif -%}