Answer the question
In order to leave comments, you need to log in
How to display the product category name?
Can you tell me how to display the category name? This is how it would be:
Answer the question
In order to leave comments, you need to log in
Take away the excess
add_action( 'woocommerce_after_shop_loop_item_title', 'custom_show_product_cat', 7 );
function custom_show_product_cat() {
global $product;
echo wc_get_product_category_list( $product->get_id(), ', ', '<div class="product-cat">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . ' ', '</div>' );
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question