Here is my problem:
I'm trying to setup my site using joomla, but had to dig into the code to make some modifications myself.
I have a component where I display some categories with links to articles like this:
Code: Select all
<?php foreach($this->list as $l): ?>
<li class="article-intro-list">
<h3 class="article-title"><a href="<?php echo $l->link; ?>" ><?php echo $l->title; ?></a><span>+</span></h3>
<div class="collapse"> <?php echo $l->description; ?>
<div class="loadPopUp"><a href="<?php echo $l->link; ?>" title="<?php echo $l->title; ?>" class="mb" rel="width:730,height:500"><span class="howdoi_icon"><img src="images/more.gif" alt="Read more" /></span> Read more...</a></div>
</div>
</li>
<?php endforeach; ?>
Code: Select all
<?php echo $l->groupId; ?>Code: Select all
<?php echo $l->groupTitle; ?>I really can't figure out that... although it seems pretty straightforward... Still not so good in php
Thanks so much in advance!