Ok, the code of the template can help
For the category item in blog list, i used the original code provide in FC1.5.3 slightly modified :
Code:
<div class="image<?php echo $this->params->get('lead_position') ? ' right' : ' left'; ?>">
<?php if ($this->params->get('lead_link_image', 1)) : ?>
<a href="<?php echo JRoute::_(FlexicontentHelperRoute::getItemRoute($items[$i]->slug, $this->category->slug)); ?>" class="hasTip" title="<?php echo JText::_( 'FLEXI_READ_MORE_ABOUT' ) . '::' . $this->escape($items[$i]->title); ?>">
<img src="<?php echo $thumb; ?>" alt="<?php echo $this->escape($items[$i]->title); ?>" />
<?php else : ?>
<img src="<?php echo $thumb; ?>" alt="<?php echo $this->escape($items[$i]->title); ?>" />
<?php endif; ?>
<div class="clear"></div>
</div>
<?php
endif; // case source
endif;
?>
The image shown was linked directly to the article.
Now i have no image...
In my item template, when i have a "Notice: Undefined index", it's ok : i put my field in a template position.
When i have a "Notice: Undefined offset: 0", that's because i did this : i use a field "extended weblink" and i used the field in an image for the link like this :
Code:
<?php
// recup de l url de visite virtuelle
$recupvarvis = $this->fields['visite_virtuelle']->value[0];
$visitvir = explode("\"",$recupvarvis);
<td style="vertical-align: top; width: 50%; text-align: center;"><?php if ($this->fields['visite_virtuelle']->display!="") : ?>
<?php echo "<a href=\"$visitvir[3]\" target=\"_blank\"> <img title=\"Visite virtuelle de cet hébergement...\" alt=\"Visite virtuelle de cet hébergement...\" src=\"http://www.clevacances-ain.com/images/stories/flexicontent/visites-virtuelles.jpg\" /> "; ?>
<?php endif; ?>
</td>
What is changed now (FC doesn't find the index...)
If you can enlight me on this point, it will be great
Thanks in advance for your help,
Regards