在Woocommerce中,我以正确的方式在支持的编辑产品页面中设置了自定义字段...现在,我试图在此产品价格显示为单个产品页面之前,以自定义字段值显示产品。
但是由于某种原因,使用下面的代码,我可以显示它(产品价格都不显示):
function bd_rrp_price_html( $price, $product ) {
echo get_post_meta( $post->ID, '_text_field', true );
}
add_filter( 'woocommerce_get_price_html', 'bd_rrp_price_html', 100, 2 );
感谢您的帮助
这是我希望在视觉上显示的内容:
答案 0 :(得分:2)
更新了(2个替代方法)
请尝试以下重新访问的代码:
add_filter( 'woocommerce_get_price_html', 'custom_single_price_html', 100, 2 );
function custom_single_price_html( $price, $product ) {
$custom_field = get_post_meta( $product->get_id(), '_text_field', true );
if ( is_product() && ! empty($custom_field) )
$price = '<span class="custom-textfield">' . $custom_field . '</span><br>' . $price;
return $price;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
或者,您也可以使用以下内容:
add_filter( 'woocommerce_single_product_summary', 'single_product_text_field', 8 );
function single_product_text_field() {
global $product;
$custom_field = get_post_meta( $product->get_id(), '_text_field', true );
if ( ! empty($custom_field) )
echo '<p class="custom-textfield">' . $custom_field . '</p>';
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。