I am querying the posts as shown below:
query_posts('post_type=Product&showposts=-1');
This returns all post of type product. But I have custom attributes on my products that have been created in wooCommerce but I can't seem find this info anywhere.
I tried using:
$thePost = get_post_custom()
I also tried:
$thePost = get_post_meta(get_the_ID)
when I print_r these I get a lot of information but I can't see the product attributes from woocommerce anywhere
the image below shows how this information is set on the product.

How do I access this information after querying the post? specifically I need to extract the colours and sizes.