Support » Theme: iBuddy » Problem with header logo and homepage.

  • Resolved hardwork26

    (@hardwork26)


    I am having problem with my logo in the header of my site page not linking to my site homepage, how do you resolve this? Secondly, members avatar are not appearing on the homepage after you logout of site, eventhough i have tick the settings to do so.

    Hope to hear from you soon.

Viewing 1 replies (of 1 total)
  • Theme Author Ayman

    (@aymanalzarrad)

    Hi @hardwork26,
    To make the logo link to your home page you will have to modify the header.php file of the theme. Anyway, the next update will include this.

    Please keep in mind that if you have more modifications that you wanna apply on the theme then consider creating a child theme and adding the modifications there so you don’t lose any when updating the theme next time. You can learn more about creating a chlid theme here: http://codex.wordpress.org/Child_Themes

    1. Logo link:
    In header.php search for this line:

    <img src="<?php echo of_get_option('logo'); ?>"/>

    And replace it with:

    <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo of_get_option('logo'); ?>"/></a>

    2. Members Avatars:
    Members Avatars should appear on the “Registration” page and not the home page… Did you try resetting the settings to default to see if that resolves it?

Viewing 1 replies (of 1 total)
  • The topic ‘Problem with header logo and homepage.’ is closed to new replies.