Hi @2refinish,
I am afraid that would take some time, and it is not so easy to create.
Products categories are generated automatically by WordPress – when clicking on a Category, there will be shown a page with products that belong to that category. With Neve PRO, you can use the magic tags available in the Custom Layouts module – to display the description.
Can you please check again to be sure that you may have not missed the answer?
As a PRO user, you can always contact us via https://store.themeisle.com/contact/, and we will investigate the issue with the PRO plugin as this community forum is for Neve free version.
Have a great day!
Thanks for getting back to me @danamv
The reason I asked for support was for help inserting the product category description as I do not have the skills to do that, and support engineers do.
I have tried to go through the proper contact method, but I am not receiving any support from the ticket raised as I have mentioned in my post above.
I just require help, to solve this issue. If the support engineers can do that then great.
I’m resolving this thread as you were assisted by our support team regarding this with custom layouts (PRO feature).
For other users that are looking for a solution – custom code can be used to show title and description on WooCommerce category pages:
add_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 100 );
function woocommerce_taxonomy_archive_description() {
if ( is_product_category() ) {
$cat_title = single_tag_title( "", false );
echo '<h1>' . $cat_title . '</h1>';
$cat_id = get_queried_object()->term_id;
$cat_desc = term_description( $cat_id, 'product_cat' );
echo $cat_desc;
}
}