I’ll be doing an update of the plugin later with the new read me file. In the mean time here is how you get the bottom description to display on a woocommerce product page:
Woocommerce integration:
The top category description is called as normal. To add the bottom description to a product archive add the following to the archive-product.php file. I would strongly recommend you add the file in the child folder in your theme file rather than directly changing the file in the woocommerce plugin file.
Read how to do this in woocommerce if you don’t already know.
I add the code after the
do_action( 'woocommerce_after_shop_loop' );
?>
The code to call bottom description in woocommerce:
<div class="bottagdesc">
<?php
if ( is_product_category() ) {
global $wp_query;
$q_obj = $wp_query->get_queried_object();
$cat_id = $q_obj->term_id;
$cat_data = get_option("category_$cat_id");
if (isset($cat_data['bottomdescription'])){
echo do_shortcode($cat_data['bottomdescription']);
}
}
?>
</div>