在他们选择产品选项之后,我想在单个产品页面上显示一个attribute_value,就像在选择产品选项之后显示SKU一样。
我需要添加woocommerce的meta.php文件。
这是Woocommerce的SKU包装器:
<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>
如何显示我的pa_属性?
非常感谢..
Erik
Picture 1: The attributes Picture 2: Just like the sku i would like to show the attribute
答案 0 :(得分:0)
这段代码向我展示了标准的1e属性,但这不是我想要的。 他们选择产品选项后,我想显示正确的属性。
<?php echo $appleid = array_shift( wc_get_product_terms( $product->get_variation_attributes, 'pa_apple-id', array( 'test' => 'names' ) ) ); ?>