Right now the problem is not showing because I am running version 1.6.0 of the plugin, but here is a page that shows a category description: https://lovingfromadistance.com/ldr/miss-you-issues/
I am running the latest version of X theme. It has been customized to display the category description.
The code X theme support gave me to do this was:
// Displays category descriptions
// =============================================================================
remove_filter( ‘pre_term_description’, ‘wp_filter_kses’ );
remove_filter( ‘term_description’, ‘wp_kses_data’ );
function display_category_descriptions(){
if ( is_category() ) : ?>
<div class=”category-desc”>
<div class=”x-container max width”>
<div class=”category-desc-contents”>
<?php echo category_description(); ?>
</div>
</div>
</div>
<?php elseif( is_single() ) : ?>
<?php
$f_category = get_the_category();
if ( $f_category[0]->category_parent != 0 ) {
$f_category_name = get_cat_name( $f_category_id );
} else {
$f_category_name = $f_category[0]->name;
}
?>
<div class=”category-desc”>
<div class=”x-container max width”>
<div class=”category-desc-contents”>
<?php echo category_description( get_category_by_slug($f_category_name)->term_id ); ?>
</div>
</div>
</div>
<?php else : ?>
<?php endif;
}
add_action(‘x_after_view_global__slider-below’, ‘display_category_descriptions’);
// =============================================================================