Results 1 to 2 of 2

Thread: Not working the output of articles in the desired a template

  1. #1
    New user
    Join Date
    02-29-12.
    Posts
    3

    Default Not working the output of articles in the desired a template

    Hello
    I want to show various content in a given block in the template. To do this in the "Articles" from one page, I create several articles with an indication where they are placed (left, right, MAIN). When mapping for some unknown reason, I deduced only that is located in the Main column. Why is this happening? What I do wrong?

    Output in the template standard
    Code:
     
    
      <?php if ($this->header): ?>
      <div id="header">
        <?php echo $this->header; ?> 
      </div>
    
     <?php if ($this->left): ?>
        <div id="left">
          <div class="span3">
            <?php echo $this->left; ?> 
          </div>                                                                                                                                                                                                 
         </div>                                                                                                                                                                                                 
      <?php endif; ?> 
    
    * 
          <div id="main">
            <div class="span6">
              <?php echo $this->main; ?> 
            </div>
            <?php echo $this->getCustomSections('main'); ?> 
          </div>
    
    * 
          <?php if ($this->right): ?>                                                                                                                                                                            
    **    <div id="right">
      * * * <div class="span2">
              <?php echo $this->right; ?> 
            </div>
          </div>
          <?php endif; ?>
    ......
    [attachment=0:2al8561q]art1.jpg[/attachment:2al8561q]

    In this case the output of the "Front end modules" in the "Layouts" are normal. That is, If I point out that in the left column should display menu module, it displays fine.

    How to make the show content from the "Articles" in the specified of the template?

    Thanks.
    PS Sorry for my English

  2. #2
    New user
    Join Date
    02-29-12.
    Posts
    3

    Default Re: Not working the output of articles in the desired a temp

    I figured out. It was necessary to specify the layout display of articles in the specified columns (parts of the template)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •