Support

Account

Home Forums General Issues Getting custom field from woocommerce category in home page Reply To: Getting custom field from woocommerce category in home page

  • thank for the reply,but i have already solve it next i post it…., your solution is bit similar, i just added following code in my loop and it did the magic.

    
    
        $category = get_term_by('slug', $prod_cat->name ,'product_cat'); $custom_field = get_field('your_custom_field', $category );
    
        echo $custom_field;