Thank you. I am in the header php template and this is my source code.
<?php
/**
* The header template
*
* @package wplook
* @subpackage BlogoLife
* @since BlogoLife 1.0
*/
?>
<?php global $options;
foreach ($options as $value) {
if (isset($value['id']) && get_option( $value['id'] ) === FALSE && isset($value['std'])) {
$$value['id'] = $value['std'];
}
elseif (isset($value['id'])) { $$value['id'] = get_option( $value['id'] ); }
}?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php global $page, $paged;
wp_title( '', true, 'right' );
// Add the blog description for the home/front page.
$site_name = get_bloginfo( 'name', 'display' );
if ( $site_name && ( is_home() || is_front_page() ) )
echo " $site_name";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'wplook' ), max( $paged, $page ) );
?></title>
<?php wplook_meta_description();?>
<meta name="keywords" content="<?php echo $wpl_meta_keywords; ?>" />
<link rel="shortcut icon" href="<?php echo $wpl_favicon_url; ?>" />
Would it be correct to delete <?php wplook_meta_description();?>
Nigel.
[Moderator Note: Please post code or markup snippets between backticks or use the code button. Or better still – use the pastebin. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]