Results 1 to 3 of 3

Thread: a little help with linking the article teaser headline...

  1. #1
    User
    Join Date
    07-20-09.
    Location
    Middlesbrough - United Kingdom
    Posts
    95

    Default a little help with linking the article teaser headline...

    Hey, i am pretty new to typolight and have run into a bit of a problem, i hope that one of you experts can help me with this ...

    okay so what i want to do is...

    link a article teaser headline (h1) to the article page using a template.

    ive got the template set up i just dont think im using the correct code to link it.

    the code for my template is below im trying to the <h1> to the article like the read more like does.

    ----------

    <div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>

    <h1>headline; ?>"><?php echo $this->headline; ?>
    </h1>
    <div class="teaser">
    <?php echo $this->teaser; ?>
    <p class="more">more; ?>"><?php echo $this->more; ?></p>
    </div>

    </div>

    ----------

    here is a link to the page http://www.360fusionhosting.co.uk:81...ual-tours.html

    I hope someone can help me

    Thanks,
    Ste

  2. #2
    Official Contao Team
    Join Date
    06-10-09.
    Location
    Stuttgart, Germany
    Posts
    68

    Default Re: a little help with linking the article teaser headline...

    Hi Ste,

    have a look into the template for news (system/moduless/news/templates/news_short.tpl) and try this code:

    Code:
    <div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
    
    <h1><?php echo $this->linkHeadline; ?>"></h1>
    <div class="teaser">
    <?php echo $this->teaser; ?>
    <p class="more">more; ?>"><?php echo $this->more; ?></p>
    </div>
    
    </div>
    ---------------------------------------------------
    kind regards planepix

    Official Contao team member - Official Contao partner
    workshop contao conference site 2011
    workshop contao conference site 2012

  3. #3
    User
    Join Date
    07-20-09.
    Location
    Middlesbrough - United Kingdom
    Posts
    95

    Default Re: a little help with linking the article teaser headline...

    hey, thanks for your help planepix, sorry i dint get back in touch sooner, Ive had a week off, lol.
    The code you sent me still doesn't work, i just cant seem to get the teaser header to link to the article using a template.

    if anyone has the answer it would be greatly appreciated.

    Thanks,
    Ste

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
  •