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
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>
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