Add my logo to header

Permalink
Hi, I am using the Simplicity Theme and want to add my logo to the header text that says "SOS Ministry Church" - I have updated my Global Scrapbook My_Site_Name, but the logo is still not appearing. Any suggestions at to what I may be doing wrong? Thanks.

 
codingpenguins replied on at Permalink Reply
This could be your header for the theme. It might not have the code to display your logo.

I do not have this theme and the best thing to do if your not a coder is to ask the creator of the theme, if they can help you.

If you are a coder, you should just

Go into /(your theme name)/elements/header.php

look for
echo SITE;


replace with this

$block = Block::getByName('My_Site_Name');  
if( $block && $block->bID ) $block->display();   
else echo SITE;


This is all you have to do