I have just a mistake there is no attribute "property <meta property="og:locale" content="us_US" />
this is my english.php
PHP Code:
define('HTML_PARAMS','dir="ltr" lang="us" xmlns:fb="http://ogp.me/ns/fb#"');
this is my html_header.php
PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?>>
<head>
<title><?php echo META_TAG_TITLE; ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<?php
if ($_COOKIE['ResCookie'] != "full") {
echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'css') . '/bootstrap-responsive.min.css" />';
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
<meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" />
<meta property="og:locale" content="it_IT" />
<meta property="og:type" content="website" />
<meta property="og:title" content="<?php echo META_TAG_TITLE; ?>" />
<meta property="og:description" content="<?php echo META_TAG_DESCRIPTION; ?>" />
<meta property="og:url" content="<?php echo $canonicalLink; ?>" />
<meta property="og:site_name" content="<?php echo STORE_NAME; ?>" />
I read many pages but I can not find a solution
Thanks for the help