• Resolved 2Refinish

    (@2refinish)


    How do I add the Description to the Product Category?

    Currently, I just have all the products listed at https://2refinish.com/product-category/bibielle and would like to display the ‘Description’ to help with SEO.

    I am using the Neve Pro Web Agency Theme, I would be very grateful for help with this.

    I have raised a support ticket with ThemeIsle mid-day Wednesday and another on Thursday late-afternoon. They are not getting back to me which is why I am having to resort to the forum for help.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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!

    Thread Starter 2Refinish

    (@2refinish)

    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;
      }
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add description to product category’ is closed to new replies.