我想在购物车页面上添加一个或两个字段。我想带我的用户首选交货时间。 例如,我正在销售蛋糕,并希望用户首选日期和时间。
我希望它在购物车页面上而不是在结帐页面上。
谢谢
答案 0 :(得分:0)
我想通了。
add_action( 'woocommerce_after_cart_table', 'custom_timing_fields' );
function custom_timing_fields() {
echo "something like input or select box here";
}