Hi,
For some reason I need to move place of <base href="{BASE_URL}" /> in template file.
Before:
<head>
<base href="{BASE_URL}" />
<title>{site-title}</title>
<meta name="author" content="{site-author}" />
<meta name="keywords" content="{site-keywords}" />
<meta name="description" content="{site-description}" />
<meta http-equiv="content-language" content="{site-languages}" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- BEGIN head -->{ELEMENT}<!-- END head -->
<base href="{BASE_URL}" />
<link rel="stylesheet" type="text/css" href="{THEME}style{.dir}.css" media="screen" />
</head>
After :
<head>
<title>{site-title}</title>
<meta name="author" content="{site-author}" />
<meta name="keywords" content="{site-keywords}" />
<meta name="description" content="{site-description}" />
<meta http-equiv="content-language" content="{site-languages}" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- BEGIN head -->{ELEMENT}<!-- END head -->
<base href="{BASE_URL}" />
<link rel="stylesheet" type="text/css" href="{THEME}style{.dir}.css" media="screen" />
<base href="{BASE_URL}" />
</head>
When I made this change, all javascript codes in my page dos not run!![[BR]]
Do you have any idea about this issue ?