Hi i wanna replace on adverts page (grid view) extra fields on place where show description in "/html/com_jomclassifieds/adverts/default_grid.php"
<?php if($item->description !='') { ?>
<div class="jomcldesc muted"> <?php echo JomclUtils::Truncate($item->description, $config->desccharslimit); ?> </div>
<?php } ?>
i replace same code as in advert page
<?php if(count($extrafields) > 0 ) { ?>
<div class="jomcldesc muted">
<table class="table table-striped">
<tbody>
<?php foreach($extrafields as $extrafield) : ?>
<tr>
<td class="span4 col-md-4"><?php echo $extrafield->label; ?></td>
<td class="span8 col-md-8"><?php echo $extrafield->value; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table> </div>
<?php } ?>
but how can i see this part of code not loaded, what wrong?