Hi,
On a website i udpate J3.4.3 to 3.4.4 and FC2.2.0 to FC3.0.8.
Since this update, i can't see any FC field in the search view.
Regarding to the generated source code, fields are detected but not rendered, and there is no trace of image field.
In details, i have
A - Image field (FC) renders nothing (not even an empty container)
B - Text fields are detected, but not the content
This code from default_results.php
Code:
<?php foreach ($infoflds as $fieldname) : ?>
<div class="fc_field_container <?php echo $fieldname; ?>">
<?php if ( @$fcitems[$i]->fields[$fieldname]->display ) : ?>
[....]
<?php endif; ?>
</div>
<?php endforeach; ?>
Renders
Code:
<div class="fc_field_container my_field1_name"></div>
<div class="fc_field_container my_field2_name"></div>
I'm accessing this search view by using FC search module; i cleared all caches, purged indexes, menu item link is OK, FC serach view is set on the good item link, indexes are re-generated, fields are indexed in basic and advanced search, and can be used as filters...
Any idea why i got this problem, and how to solve it?