since the creator didn’t answer your problem,
I found a way to fix this just go to
theme editor > Main index template > look for ( Start header )
copy & paste this code
<img src="PASTE YOUR IMAGE FULL URL HERE" alt="" width="100" height="100" class="alignnone size-thumbnail wp-image-7" />
**grab the image URL paste it in the code.**
here the example where to paste the code
——————————————
<div class="gravatar">
<img src="PASTE YOUR IMAGE FULL URL HERE" alt="" width="100" height="100" class="alignnone size-thumbnail wp-image-7" />
<?php
// grab admin email and their photo
$admin_email = get_option('admin_email');
echo get_avatar( $admin_email, 100 );
?>
</div><!--/ author -->
————–
and it’s work http://xoldie.com
-
This reply was modified 7 years, 3 months ago by
xoldie.
Thank you for your response! What if my image isn’t online and doesn’t have a URL? I created it on my phone.
Also, is there a way to just remove that image completely?
so you do everything on your phone?
to remove the image completely
just remove this code in the header start
<?php
// grab admin email and their photo
$admin_email = get_option('admin_email');
echo get_avatar( $admin_email, 100 );
?>
good luck
-
This reply was modified 7 years, 3 months ago by
xoldie.
Awesome, it worked! Thank you so much.
No, I don’t. But I found the blank mason jar image online and added my own text to the photo on my phone.
Hi @brandeern @xoldie
Sorry for late, the theme uses gravatar to show the profile image, that image comes from admin email.
If you see another person image, maybe you use incorrect email in installation process, you just need to change admin email via WordPress admin.
Regards
Morteza