Viewing 11 replies - 1 through 11 (of 11 total)
  • Try looking in your theme’s header.php template file.

    Thread Starter bishop01

    (@bishop01)

    Thanks. I found the header.php and the same code but don’t see
    <title>test</title>

    Is there another place to look? What does this code mean?
    <title><?php elegant_titles(); ?></title>

    Here is the header.php code.

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
    <html xmlns=”http://www.w3.org/1999/xhtml&#8221; <?php language_attributes(); ?>>
    <head profile=”http://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <title><?php elegant_titles(); ?></title>
    <?php elegant_description(); ?>
    <?php elegant_keywords(); ?>
    <?php elegant_canonical(); ?>

    looks like a setting from your theme…. you must have some settings options in there

    In a custom admin menu for your theme or something

    Thread Starter bishop01

    (@bishop01)

    nothing under the theme I am using.

    well….that is referencing a function that is defined somewhere

    soo…I’m not sure which theme you are actually using.

    The elegant_titles is defined elsewhere in your theme. Probably functions.php, not sure where the data is being pulled from without seeing the function tho

    Thread Starter bishop01

    (@bishop01)

    here is the theme function.php – Any ideas?
    I am using menu options to sort my navigation links. not sure if this has something to do with it. Also, this issue is only on the homepage tab and not any of the other pages.

    <?php
    require_once(TEMPLATEPATH . ‘/epanel/custom_functions.php’);
    require_once(TEMPLATEPATH . ‘/includes/functions/comments.php’);
    require_once(TEMPLATEPATH . ‘/includes/functions/sidebars.php’);
    load_theme_textdomain(‘SimplePress’,get_template_directory().’/lang’);
    require_once(TEMPLATEPATH . ‘/epanel/options_simplepress.php’);
    require_once(TEMPLATEPATH . ‘/epanel/core_functions.php’);
    require_once(TEMPLATEPATH . ‘/epanel/post_thumbnails_simplepress.php’);
    function register_main_menus(){
    register_nav_menus(
    array(
    ‘primary-menu’ => __( ‘Primary Menu’ )
    )
    );
    };
    if (function_exists(‘register_nav_menus’)) add_action( ‘init’, ‘register_main_menus’ );
    $wp_ver = substr($GLOBALS[‘wp_version’],0,3);
    if ($wp_ver >= 2.8) include(TEMPLATEPATH . ‘/includes/widgets.php’);?>

    Try looking in epanel/core_functions.php

    Thread Starter bishop01

    (@bishop01)

    thanks. Nothing under epanel/core_funtion nor custom_function.php.

    Where can I find bloginfo or blogname files? I saw some references to it.

    In that theme, no idea! What you need to locate is elegant_titles().

    You could always just replace

    <title><?php elegant_titles(); ?></title>

    with

    <title>Whatever you want</title>

    or

    Try installing a plugin that does SEO. most of them give you a way to control the title tag per page/post

    Thread Starter bishop01

    (@bishop01)

    Got it working. Thank you all.

    This did the trick. Not sure why it was showing ‘test’. go figure..

    <title><?php elegant_titles(); ?></title>

    with

    <title>Whatever you want</title>

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Internet Explore Tab Title/Name change. How?’ is closed to new replies.