Hi guys,
Basically my description worked and now it doesn't although I put it in settings/general. The thing is it doesn't appear on the browser. Is there any other way I could do it? Thanks.
Hi guys,
Basically my description worked and now it doesn't although I put it in settings/general. The thing is it doesn't appear on the browser. Is there any other way I could do it? Thanks.
Site url?
Edit style.css and remove:
#blog-description {
display:none;
}Thank you but it didn't work. It just displayed the blog description again above the previous one, not in the upper part of the browser like it says here:" My blog description from the browser disappeared"
That's not your blog description then. It's your site's meta-title tag.
edit header.php and look for:
<title>[ some code]</title>
and add <?php bloginfo('description'); ?> just before </title>.
hmmm. I don't seem to have this <title>[ some code]</title>
I have this:
<?php thematic_create_doctype(); echo " "; language_attributes(); echo ">\n";?>
<head profile="http://gmpg.org/xfn/11">
<?php
thematic_doctitle();
thematic_create_contenttype();
thematic_show_description();
thematic_show_robots();
thematic_canonical_url();
thematic_create_stylesheet();
thematic_show_rss();
thematic_show_commentsrss();
thematic_show_pingback();
thematic_show_commentreply();
wp_head(); ?>
<?php if ( (is_home()) || (is_front_page()) ) { ?>
<meta name="description" content="...all the little tasty things life has to offer" />
<?php } elseif (is_single()) { ?>
<meta name="description" content="<?php the_excerpt();?>"/>
<?php } ?>
</head>
<body class="<?php thematic_body_class() ?>">
<?php thematic_before(); ?>
<div id="wrapper" class="hfeed">
<?php thematic_aboveheader(); ?>
<div id="header">
<?php thematic_header() ?>
</div><!-- #header-->
<?php thematic_belowheader(); ?>
<div id="main">
Did this happen after you upgraded the All in One SEO Pack?
Check admin>>>settings>>all in one seo to see if the status is set to enable. If not then enable it.
it is enabled.
What's in the function thematic_show_description()? You'll probably find it in functions.php
this? <li class="blog-description"><span><?php bloginfo('description'); ?></span>
I don't think that's it.
This topic has been closed to new replies.