Keyword

thumbnail with item display

More
13 years 8 months ago #86115 by michael neese
Replied by michael neese on topic thumbnail with item display
thanks for the new code addition or the related items...

Please Log in or Create an account to join the conversation.

  • jorge mejia gallegos
  • jorge mejia gallegos's Avatar
  • Offline
  • Junior Member
More
13 years 7 months ago #86116 by jorge mejia gallegos
Replied by jorge mejia gallegos on topic thumbnail with item display
Thanks a lot for this.

I would also like to include the introtext, i have tried this by adding <?php echo $item->introtext; ?> to your code... i thought it made sense but nothing happens.

Any ideas on this?
manolo said:

i found a solution

 

change this code (in item.php)

 

 

  <?php if($this->item->params->get('itemRelated') && isset($this->relatedItems)): ?>

 <!-- Related items by tag -->

<div class="itemRelated">

<h3><?php echo JText::_("Related items (by tag)"); ?></h3>

<ul>

<?php foreach($this->relatedItems as $key=>$item): ?>

<li class="<?php echo ($key%2) ? "odd" : "even"; ?>">

<a href="<?php echo $item->link ?>"><?php echo $item->title; ?></a>

</li>

<?php endforeach; ?>

</ul>

<div class="clr"></div>

</div>

<?php endif; ?>

 

 

WITH THIS CODE

 

  <?php if($this->item->params->get('itemRelated') && isset($this->relatedItems)): ?>

  <!-- Related items by tag -->

<div class="itemRelated">

<h3><?php echo JText::_("Related items (by tag)"); ?></h3>

<ul>

<?php foreach($this->relatedItems as $key=>$item): ?>

            <?php //print_r($item);?>

<li class="<?php echo ($key%2) ? "odd" : "even"; ?>">

<a href="<?php echo $item->link ?>"><img src="<?php echo $item->imageXSmall; ?>" alt="<?php if(!empty($this->item->image_caption)) echo $this->item->image_caption; else echo $this->item->title; ?>" /><span class="itemRelatedTitle"><?php echo $item->title; ?></span></a>

</li>

<?php endforeach; ?>

</ul>

<div class="clr"></div>

</div>

<?php endif; ?>

<div class="clr">

</div>

 

 

And now you have and photo in "related items (by tag)"

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum