• Hey All, I found the instructions here on how to move a blog and it seemed to go great. However, there are a few little areas that have me stumped. 1 to start is the Blog Title. I have changed the General Settings but the Blog Title is still stuck on the “old” blog title. You know what shows in the tab portion. And what is saved when you bookmark the page. Any ideas how to change it? I am wondering now if my blog is picking up the correct blog sql database now…. hmmmm. Problem was I had a blog on both domains (same host) and well I just moved one over the other ?? So again I don’t know what database is being used. But everything else looks peachy ??

    IE: <title>J.T.T. Our Family “IS” Our Business.</title>

    Thanks,
    Tammy

Viewing 5 replies - 1 through 5 (of 5 total)
  • Admin/Settings/General

    Thread Starter Klutzys1

    (@klutzys1)

    Yes, esmi. I have already been there and changed that info. The info there IS correct but what shows when the blog is up IS NOT correct. That’s why I wondered if it is in my database and that is where I will have to change it. It appears as if the blog is reading from the wrong database or something. Don’t know and that’s why I need help.

    Tammy

    Thread Starter Klutzys1

    (@klutzys1)

    See: https://www.the-fly-on-the-wall.com

    My BLOG TITLE in general settings says, “The Fly On the Wall!”

    However, look at the tab or click to save as bookmark or view page source. It show’s, “<title>J.T.T. Our Family “IS” Our Business.</title>”

    That WAS my old blog info. So how can I change the title for The Fly On The Wall? Is it in a database? If so how do I fix it?

    Tammy

    It could be in the db but first check that the title hasn’t been hardcoded into header.php. It should use something like:

    <title><?php wp_title('', true, 'right'); ?> <?php bloginfo('name'); ?></title>

    Thread Starter Klutzys1

    (@klutzys1)

    Esmi, Is this what you mean? I found it in edit themes, header.php

    Tam

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml">
    <head profile="https://gmpg.org/xfn/11">
    
    	<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
    
    	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    	<meta name="generator" content="Bluefish 1.0.7"/> <!-- leave this for stats please -->
    
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    	<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    	<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
    	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
    	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    
    	<?php wp_get_archives('type=monthly&amp;format=link'); ?>
    	<?php //comments_popup_script(); // off by default ?>
    	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
    	<?php wp_head(); ?>
    </head>
    <body>
    <div id="wrapper">
    <div id="main_content">
    <div id="header-wrap">
    
    <div class="header">
    <div class="subscribe"><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Add this blog to any reader'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/rss.gif" alt="RSS" /></a></div>
    <h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
    <div class="description"><?php bloginfo('description'); ?></div>  
    
    </div>
    
    </div>
    <?php include('menu.php');?>
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Moved my Blog now Title is wrong’ is closed to new replies.