Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Child theme is not working I guess

$
0
0

Replies: 0

Things were pretty great until I updated my recent all plugins and themes. So here it goes, I’ve a multisite and using hueman for subsites and customizr for main site.

All the customization are done in a child theme and it was created by childify plugin. After the update I don’t see any such requested customization working well.

For ex:
on the page of subsite http://www.tripoclan.com/trip, when u click on the logo, it should land to the home page of http://www.tripoclan.com, but its not working now. Similarly the sidebar color changes are also not working.

These codes are already there in child theme.

style.css file codes are:

/* sidebar color change */
.main .main-inner.group{
    background: none;
}

in functions.php, I’ve code already there

/* ------------------------------------ */

if ( ! function_exists( 'hu_site_title' ) ) {

  function hu_site_title() {

    // Text or image?

    if ( false != hu_get_img_src_from_option( 'custom-logo' ) ) {

      $logo = '<img src="'. hu_get_img_src_from_option( 'custom-logo' ) . '" alt="'.get_bloginfo('name').'">';

    } else {

      $logo = get_bloginfo('name');

    }

$link = '<a href="http://www.tripoclan.com" rel="home">'.$logo.'</a>';

    if ( is_front_page() || is_home() ) {

      $sitename = '<h1 class="site-title">'.$link.'</h1>'."\n";

    } else {

      $sitename = '<p class="site-title">'.$link.'</p>'."\n";

    }

    return $sitename;

  }

}

where is the glitch?


Viewing all articles
Browse latest Browse all 59525

Trending Articles