• Hi,

    I’ve tried a lot of different things without result. On my site aeldreit.dk. I want to only show the Facebook logo on the homepage / frontpage. On the rest of the pages i want it removed. Is this posible?

Viewing 1 replies (of 1 total)
  • Yes, it’s possible.
    You should edit your theme files. I think maybe the “header.php” file in your theme.
    in homepage:

    if(is_home()) {
        // show the image
    }

    in the rest pages:

    if(!is_home()) {
        // show the image
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Only show Facebook logo on homepage’ is closed to new replies.