Hi,
I have a variable product, and each variation has it’s own SKU.
When you make a selection on the product page, the variation SKU is shown.
I also have a custom variation called: pa_apple-id
With some attributes: MB985LL/A, MC118LL/A, MC371LL/A
I would like to show the right variation attribute under the SKU value after they selected the product options. (just like the right sku is showing up)
In the meta.php is the php code for the sku showing up after product selections.
<span class="sku_wrapper"><?php esc_html_e( 'SKU:', 'woocommerce'); ?> <span class="sku"><?php echo ( $sku = $product->get_sku() ) ? $sku : esc_html__( 'N/A', 'woocommerce' ); ?></span></span>
Can you help me with this?