01/07/2016 at 5:52 pm
#360317
Participant
Steve,
I had forgotten to enter the license number!
I have done that and now the entries appear in alphabetical order. The category numbers are gone, however, so I need to figure out what happened with the numbers.
Here is the current card-single.php code:
<div class="cn-clear" style="display:table;margin: 10px 0;width:100%;">
<div style="display:table-cell;vertical-align:middle;">
<?php
if ( $atts['show_categories'] ) {
echo '<h4>';
echo $atts['str_category_label'];
echo '</h4>';
cn_display_terms_of_parent_term_id( 35, $entry->getCategory() );
}
?>
</div>
<div style="display:table-cell;text-align:right;vertical-align:middle;">
<?php
if ( $atts['show_last_updated'] ) {
cnTemplatePart::updated(
array(
'timestamp' => $entry->getUnixTimeStamp(),
'style' => array(
'font-variant' => 'small-caps',
)
)
);
}
?>
</div>
</div>
