Hello,
I’m working in a ecommerce and I want to show de attributes in shop page but I don’t know how to do it.
I managed to show SKU, but not the attributes.
The code:
add_action( 'woocommerce_before_shop_loop_item_title', 'shop_sku' );
function shop_sku(){
global $product;
echo '<div class="sku">Code: ' . $product->sku . '</div>';
}
I appreciate any help