Joomla:将文章文本移动到另一个位置


Joomla: Move article text to another position

我正在改变一点protostar模板,我想显示文章文本不在内容位置,而是在侧边栏。

我发现文本是由这个显示的组件' com_content ' ' ' tmpl ' default.php条的看法111行:

<?php echo $this->item->text; ?>

但是当我把这个放在templates'protostar'index.php的某个地方时,它不起作用(如预期的:))

你能告诉我如何移动这个吗?

谢谢!

您需要在templates'protostar'index.php文件中做以下更改:

削减

<jdoc:include type="message" />
<jdoc:include type="component" />

:

    <div class="row-fluid">
    <?php if ($this->countModules('position-8')) : ?>
    <!-- Begin Sidebar -->
         <div id="sidebar" class="span3">
            <div class="sidebar-nav">
                <jdoc:include type="modules" name="position-8" style="xhtml" />
            </div>
        </div>
    <!-- End Sidebar -->
   <?php endif; ?>
   <main id="content" role="main" class="<?php echo $span; ?>">
    <!-- Begin Content -->
        <jdoc:include type="modules" name="position-3" style="xhtml" />
            <jdoc:include type="message" />
            <jdoc:include type="component" />
            <jdoc:include type="modules" name="position-2" style="none" />
                        <!-- End Content -->
    </main>
    <?php if ($this->countModules('position-7')) : ?>
        <div id="aside" class="span3">
        <!-- Begin Right Sidebar -->
            <jdoc:include type="modules" name="position-7" style="well" />
        <!-- End Right Sidebar -->
        </div>
    <?php endif; ?>
  </div>

it 粘贴在position-7之后或position- 3之前,您需要显示内容的任何一侧,即

<div class="row-fluid">
   <?php if ($this->countModules('position-8')) : ?>
     <!-- Begin Sidebar -->
     <div id="sidebar" class="span3">
       <div class="sidebar-nav">
          <jdoc:include type="modules" name="position-8" style="xhtml" />
       </div>
     </div>
     <!-- End Sidebar -->
   <?php endif; ?>
   <main id="content" role="main" class="<?php echo $span; ?>">
    <!-- Begin Content -->
       <jdoc:include type="modules" name="position-3" style="xhtml" />
       <jdoc:include type="modules" name="position-2" style="none" />
    <!-- End Content -->
   </main>
   <?php if ($this->countModules('position-7')) : ?>
      <div id="aside" class="span3">
        <!-- Begin Right Sidebar -->
          <jdoc:include type="message" />
          <jdoc:include type="component" />
          <jdoc:include type="modules" name="position-7" style="well" />
         <!-- End Right Sidebar -->
       </div>
      <?php endif; ?>
   </div>