How I can get color value?
-
Hello!
Firsly, thanks for the perfect plugin.
How I can get current color’s value and display it on category page of each product and in single page of each product.
I made this
add_action( 'woocommerce_shop_loop_item_title', 'product_colors' ); add_action( 'woocommerce_single_product_summary', 'product_colors' ); function product_colors() { global $post; $terms = get_terms( 'product_color', apply_filters( 'elm_cf_color_style_attribute', $color)); print_r($terms); }
But I get everything except colors hex code.
I know it’s custom field, but how I can get this value?
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How I can get color value?’ is closed to new replies.