• Resolved brandeern

    (@brandeern)


    Hello. I updated my profile picture via Gravatar. I am able to see said picture next to ‘Howdy, Brandee’ at the top right corner while logged into WordPress and editing my blog, as well as next to my name when I comment. However, there is still a mystery person photo on my actual blog next to the title. I can’t find anywhere in the theme’s settings to change this. Is it not the same thing as my Gravatar picture? How do I update this mystery person picture?? Thanks!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • xoldie

    (@xoldie)

    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 https://xoldie.com

    • This reply was modified 6 years ago by xoldie.
    Thread Starter brandeern

    (@brandeern)

    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?

    xoldie

    (@xoldie)

    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 6 years ago by xoldie.
    Thread Starter brandeern

    (@brandeern)

    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.

    Theme Author Morteza Geransayeh

    (@man4toman)

    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

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Profile Picture’ is closed to new replies.