将字段添加到woocommerce购物车页

时间:2015-07-12 06:54:40

标签: wordpress woocommerce

我想在购物车页面上添加一个或两个字段。我想带我的用户首选交货时间。 例如,我正在销售蛋糕,并希望用户首选日期和时间。

我希望它在购物车页面上而不是在结帐页面上。

谢谢

1 个答案:

答案 0 :(得分:0)

我想通了。

add_action( 'woocommerce_after_cart_table', 'custom_timing_fields' );
function custom_timing_fields() {
     echo "something like input or select box here";   
}