tomfujii
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Analytics by Found] how to set the timezone to JST?What is my server’s timezone?
I can see the timezone is Japan in the Google Analytics’s admin menu.
I recieve emails from contact form 7 which always shows 9 hours difference.
At first, I thought because of user’s arrival and contact form sent time are different, but presently I suspect the time in the email shows GMT after having received several emails.
Forum: Plugins
In reply to: [Contact Form 7 Analytics by Found] how to set the timezone to JST?Hi Dora,
Yes, that surely is.
Time zone country or territory in the Profile Setting is
set to Japan and it says (GMT +9:00)Tokyo at the right side of it.I wonder if there is any bug.
I use Ultimate Google analytics plugin to track the trafic.
Could this be reason?Forum: Plugins
In reply to: [Contact Form 7 Analytics by Found] how to set the timezone to JST?Hi Found,
I see timezone is JST in the profile.
Is there any other place to set it?Forum: Themes and Templates
In reply to: There are two menus on the topI found get_constructor_menu() function.( it is in function.php. I am not so familiar with codes. Forgive me…)
It seems nothing wrong as following.
====================
function get_constructor_menu($before = ”, $after = ”)
{
global $main;
$main->getMenu($before, $after);
}
==============Is there possibility the database broken?
Should I rewrite the databese?( If that’s the case, where to rewrite?)
Or, should I simply put the backup data? ( I don’t know if it makes another problem.)Forum: Themes and Templates
In reply to: There are two menus on the topThis is the whole source I have in the header.php.
I think “get_constructor_menu()” has some problem but I don’t know where it exists.
Forum: Themes and Templates
In reply to: There are two menus on the topYes, I thought so too.
But it looks calling menu just once. This is the source of header.php.I think menu is called by <?php get_constructor_menu() ?> but
I don’t know where this function exists.<?php
/**
* @package WordPress
* @subpackage Constructor
*/
?>
<!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” <?php language_attributes(); ?>>
<head profile=”https://gmpg.org/xfn/11″>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<title><?php wp_title(‘»’, true, ‘right’); ?> <?php bloginfo(‘name’); ?></title>
<link rel=”stylesheet” type=”text/css” media=”screen” href=”<?php bloginfo(‘stylesheet_url’); ?>”/>
<link rel=”stylesheet” type=”text/css” media=”print” href=”<?php echo get_template_directory_uri(); ?>/print.css” />
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”<?php bloginfo(‘name’); ?> Atom Feed” href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php wp_get_archives(‘type=monthly&format=link’); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>><div id=”body”>
<div id=”wrapheader” class=”wrapper”>
<div id=”header”>
<?php get_constructor_menu() ?>
<div id=”title”>
<?php if (is_home() || is_front_page()) { ?>
<h1 id=”name”>/” title=”<?php bloginfo(‘name’); echo ” » “; bloginfo(‘description’);?>”><?php bloginfo(‘name’); ?></h1>
<?php } else { ?>
<div id=”name”>/” title=”<?php bloginfo(‘name’); echo ” » “; bloginfo(‘description’);?>”><?php bloginfo(‘name’); ?></div>
<?php } ?>
<div id=”description”><?php bloginfo(‘description’);?></div>
</div>
</div>
</div><div id=”wrapcontent” class=”wrapper”>
<?php get_constructor_slideshow() ?>