Hello Christopher,
What you can do is use is_single() function.
Your code would look something like this
if(!is_single()) {
//your code that you don't want to show on single pages
}
You probably want to fit bloginfo( ‘name’ ); in there if I’m right.
Let me know if it works.