Hi all. I have a view where retrieve the last 10 blog post. I need to retrieve this fields: title (linked to the blog post), post date, and teaser. I have make the view and it works, but not at 100%. The problem is that the link in the title is "node/X" and not the alias created via pathauto. Pathauto is configurated and running (alias for node/X works). This is my template file (views-view-fields--categoriespage-fitness.tpl.php):
<div class="AntNewsCategoria borderBottomCateg"> <img height="63" width="103" alt="image" src="/sites/fitnesspeople.it/themes/fp_001/images/fotoAntepriNews.jpg"/> <h3><?php echo $fields['title']->content; ?></h3> <p><span class="data"><?php echo $fields['created']->content; ?> - <?php echo $fields['teaser']->content;?></p> </div>
Where is the problem ?
M.