I have installed Simple corporate theme and after that I found that tags are no longer avaliable for sorting in Structure->Content Types->Article->Manage Display
Tags ignore weight and always render last.
I perfrom small investigation and found that it was hardcoded in themes/corporate/templates/node.tpl.php
<div class="content"<?php print $content_attributes; ?>>
<?php
// Hide comments, tags, and links now so that we can render them later.
hide($content['comments']);
hide($content['links']);
// hide($content['field_tags']);
print render($content);
?>
</div>
<?php if (/*!empty($content['field_tags']) */ !empty($content['links'])): ?>
<footer>
<?php ; /* print render($content['field_tags']); */ ?>
<?php print render($content['links']); ?>
</footer>
<?php endif; ?>
So it is 2 problems here.
1. Taxonomy allows to create other tag structures. And this code will not work for them.
2. Such a behavoir wasn't manetioned in docs. So users will spent some time on debugging, before figuring out how to fix it.
Comments
Comment #1
shisha_hwguy commentedSame hardcode in themes/corporate/style.css
this section should be repeated for each taxonomy type
Comment #1.0
shisha_hwguy commentedfix code section
Comment #2
devsaran commentedReally Thanks Shishenin. I will update it in the code..
Comment #3
shisha_hwguy commentedAny updates on this subject?
Comment #4
devsaran commentedIt is fixed in 7.x-1.4.
Comment #4.0
devsaran commentedfix source