Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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>

    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.

    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’);?>

    Thread Starter bishop01

    (@bishop01)

    nothing under the theme I am using.

    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(); ?>

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