我目前有一个 wordpress 网站,用户可以在其中上传和出售他们的音乐。在 woocommerce 的帖子页面中,我有一个自定义的“常规价格”字段,它可以为用户提供一个带有价格选项的下拉菜单。它一直在工作,直到最近,现在价格不再显示在前端,销售标签现在出现在产品图像上。
这是自定义价格字段的代码:
add_action( 'woocommerce_product_options_pricing', 'theme_slug_custom_product_field' );
function theme_slug_custom_product_field() {
woocommerce_wp_select(array(
'id' => '_regular_price'
, 'label' => __( 'Regular Price', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . ')'
, 'data_type' => 'price'
, 'options' => array(
''=>Free
, '0.99'=>Singles
, '4.99'=>Mixtapes
, '9.99'=>Albums )
)
);
}
我真的需要弄清楚是什么原因造成的。