Woocommerce - 将额外的表单字段添加到单个产品页面

时间:2017-03-22 16:04:10

标签: php wordpress woocommerce custom-fields

我正在使用Woocommerce,在单个产品页面上,除了默认的“数量”字段外,我还想显示一些自定义表单字段。

这些表单字段很简单: first_name last_name 电子邮件 手机 。我想在用户购买产品时收集这些信息。

我首先尝试使用插件:https://wordpress.org/plugins/woo-extra-product-options/。这允许我添加字段,但标签没有正确显示,所以我不想使用这个。

其次,我发现的唯一代码示例是在后端添加自定义产品字段,以下代码不输出文本字段:

add_action( 'woocommerce_after_single_product_summary', 'add_custom_field', 0 );

function add_custom_field() {
    global $post;
    echo "<div class='prod-code'>Product Code: ";
    $text= get_post_meta('_text_field', $post->ID);
    echo "</div>";
    return true;
}

如何将额外的表单字段添加到单个产品页面?

1 个答案:

答案 0 :(得分:0)

Used WooCommerce Product Add-ons plugin as a solution for this.