我使用joomla 3.4中的新功能frontend编辑器,并且可以使用单个模板(protostar - 默认)。
我需要在我的网站上使用多个模板。然后复制protostar模板,删除我不需要和protostar2名称,只需将位置置于-80位置。
模板protostar2
的index.php
<?php
defined('_JEXEC') or die;
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<jdoc:include type="head" />
<link rel="stylesheet" href="http://j2.travelsolution.mx/templates/protostar/css/template.css" type="text/css" />
<script src="http://j2.travelsolution.mx/templates/protostar/js/template.js" type="text/javascript"></script>
</head>
<body class="site ">
<div class="body">
<div class="container">
<div class="row-fluid">
<main id="content" role="main" >
<jdoc:include type="component" />
<jdoc:include type="modules" name="position-80" />
</main>
</div>
</div>
</div>
</body>
</html>
templateDetails.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/2.5/template-install.dtd">
<extension version="3.1" type="template" client="site">
<name>protostar2</name>
<version>1.0</version>
<creationDate>4/30/2012</creationDate>
<author>Kyle Ledbetter</author>
<authorEmail>admin@joomla.org</authorEmail>
<copyright>Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.</copyright>
<description>TPL_PROTOSTAR2_XML_DESCRIPTION</description>
<files>
<folder>css</folder>
<folder>js</folder>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
</files>
<positions>
<position>position-80</position>
</positions>
</extension>
当我从前端修改模块时一切正常,除了位置部分仅加载protostar的位置而不是protostar2位置-80出现。现在,如果我从后端更改模块(位置80),它将完美无缺。这是picture。
简而言之。 我有2个模板:protostar(默认)和protostar2。 我创建了一个菜单(m2)并分配了protostar2,然后我完成了我的模块并分配了位置-80。要从前端加载而不是位置I-80
进行编辑我需要加载正确的位置吗?。
答案 0 :(得分:0)
我找到了一个编辑文件default.php的解决方案,我在第110行评论:
//echo $this->loadTemplate('positions');
这不会加载位置并解决了我的问题。 该文件在 YOUR_PATH_SITE \ components \ com_config \ view \ modules \ tmpl \ default.php
中分配