Joomla <jdoc:include type=“head” /> não é renderizado corretamente - é renderizado na tag <body>

StackOverflow https://stackoverflow.com//questions/23063357

Pergunta

Recentemente eu estava migrando uma página web do joomla 1.5 -> joomla 3.2.O modelo em si funciona muito bem.O conteúdo não é exibido por causa da tag.

O código escrito que tenho no meu índice é como:

<?php
defined('_JEXEC') or die('Restricted access'); // no direct access
JHtml::_('behavior.framework',true);
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'functions.php';
$document = null;
if (isset($this))
    $document = & $this;
$baseUrl = $this->baseurl;
$templateUrl = $baseUrl . '/templates/' . $this->template;

artxComponentWrapper($document);
?>
<!DOCTYPE html>
<html xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>"
  xmlns:jdoc="http://www.w3.org/1999/XSL/Transform">
<head>
  <jdoc:include type="head" name="all" />
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  <link rel="stylesheet" href="<?php echo $this->baseUrl; ?>/templates/system/css/system.css" type="text/css" />
  <link rel="stylesheet" href="<?php echo $this->baseUrl; ?>/templates/system/css/general.css" type="text/css" />
  <link rel="stylesheet" type="text/css" href="<?php echo $templateUrl; ?>/css/template.css" media="screen" />

  <!--[if IE 7]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
  <script type="text/javascript" src="<?php echo $templateUrl; ?>/script.js"></script>
</head>
...
</html>

E isso é renderizado como:

<html xml:lang="sl-si" lang="sl-si" xmlns:jdoc="http://www.w3.org/1999/XSL/Transform" class="chrome  win">
<head>
  <style type="text/css"></style>
</head>
<body>
  <jdoc:include type="head" name="all">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
    <link rel="stylesheet" href="/templates/system/css/system.css" type="text/css">
    <link rel="stylesheet" href="/templates/system/css/general.css" type="text/css">
    <link rel="stylesheet" type="text/css" href="/TKMS/templates/tkms_theme/css/template.css" media="screen">
    <!--[if IE 7]><link rel="stylesheet" href="/TKMS/templates/tkms_theme/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
    <script type="text/javascript" src="/TKMS/templates/tkms_theme/script.js"></script>
    <!--CONTENT-->..
  </jdoc:include>

Por que isso acontece?Como posso consertar isso?Li que isso acontece por causa do BOM, mas não consegui consertar.

Foi útil?

Solução 2

O problema é que o tema é um tema do Artisteer.Para resolver este problema basta abrir o tema .artx e exportar para outra versão do joomla.Se você não possui o arquivo .artx, não posso ajudá-lo porque considerei o problema insolúvel.

Outras dicas

tente mover o

  <jdoc:include type="head" name="all">

tag nas tags head, certo (você tem no corpo).É pelo menos onde deveria estar.Não tenho certeza se ele realmente será renderizado ...

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top