Posted by ojardila on April 21, 2010 at 11:09pm
Hello, I am currently working on a plugin style but I had some problems.
(views-view-estilo.tpl.php)
<div class="item-list views-accordion <?php print $views_estilo_id ?>">
<?php if (!empty($title)): ?>
<h3 class="<?php print $views_estilo_id ?>"><?php print $title; ?></h3>
<?php endif; ?>
<div id="slideshow">
<?php foreach ($rows as $id => $row): ?>
<?php print $row ?>
<?php endforeach; ?>
</div>
</div>When I print the variable $ row I write the type fields:
output:
<div class="views-field-title">
<span class="field-content">content</span>
</div>How can I obtain just the content without html tags?
for example
output:
content