Hi,
Please add below code to claue-child > functions.php
// show categories name and tags to archive page
function custom_before_title() {
global $product;
echo wc_get_product_category_list( $product->get_id(), ', ', '<span class="posted_in db">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . ' ', '</span>' );
echo wc_get_product_tag_list( $product->get_id(), ', ', '<span class="tagged_as db">' . _n( 'Tag:', 'Tags:', count( $product->get_tag_ids() ), 'woocommerce' ) . ' ', '</span>' );
}
add_action( 'woocommerce_after_shop_loop_item_title', 'custom_before_title', 5 );
// show product short description to archive page
function display_desc_in_product_archives() {
the_excerpt();
}
add_action( 'woocommerce_after_shop_loop_item_title', 'display_desc_in_product_archives', 8 );
and below code to claue-child > style.css
.product-title.fwm {
font-size: 16px;
font-weight: 600;
}
.product-info p {margin-bottom: 0}
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio