Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    If you are showing category thumbnails, this should be automatic. Is your theme hiding them?

    Thread Starter lukelukeluke

    (@lukelukeluke)

    I think I edited them out somewhere along the line and couldn’t work out how to get them back. I’ve done it now though with –

    <p><a href="<?php echo get_term_link( $category->slug, 'product_cat' ); ?>"><?php echo  $category->name; ?></a></p>

    Thanks for getting back to me though!

    if you want to add it to product arcives use this filter:

    function wc_category_title_archive_products(){
    
        $product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' );
    
        if ( $product_cats && ! is_wp_error ( $product_cats ) ){
    
            $single_cat = array_shift( $product_cats ); ?>
    
            <small class="product_category_title"><?php echo $single_cat->name; ?></small>
    
    <?php }
    }
    add_action( 'woocommerce_after_shop_loop_item', 'wc_category_title_archive_products', 5 );

    if you want to add it to a single product title use this:

    function wpa89819_wc_single_product(){
    
        $product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' );
    
        if ( $product_cats && ! is_wp_error ( $product_cats ) ){
    
            $single_cat = array_shift( $product_cats ); ?>
    
            <h2 itemprop="name" class="product_category_title"><span><?php echo $single_cat->name; ?></span></h2>
    
    <?php }
    }
    add_action( 'woocommerce_single_product_summary', 'wpa89819_wc_single_product', 2 );

    thanks to: https://wordpress.stackexchange.com/questions/89819/woocommerce-how-to-display-product-category-above-product

    Hello CapitalH,

    can I do the same with brand names? So that under each product in a list/grid view the brand name is under the image?

    And could you tell me where to add this code? Sorry I am new to that!
    THANKS

    Gabster

    Ok I figured it out. It is just Product_brand for product_cat. But how could I get the brand name under the image but over the product title. So it is not before and not after the loop but inside.

    Is this possible?

    @capitalh for the Product Archives, how can I get the category name to show up above the image?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Display category Title’ is closed to new replies.